When removing a function from the function set and adding it to deferred, we
[llvm.git] / test / FrontendC / 2008-12-23-AsmIntPointerTie.c
blob57061422b8f241c3d58d473b7ac5f295274fc58f
1 // RUN: %llvmgcc %s -S -O1 -o -
3 #include <stdint.h>
5 int test(void *b) {
6 intptr_t a;
7 __asm__ __volatile__ ("%0 %1 " : "=r" (a): "0" (b));
8 return a;