diff options
Diffstat (limited to 'test/CFrontend/2007-04-13-InlineAsmUnion2.c')
-rw-r--r-- | test/CFrontend/2007-04-13-InlineAsmUnion2.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/test/CFrontend/2007-04-13-InlineAsmUnion2.c b/test/CFrontend/2007-04-13-InlineAsmUnion2.c deleted file mode 100644 index 284654d223..0000000000 --- a/test/CFrontend/2007-04-13-InlineAsmUnion2.c +++ /dev/null @@ -1,7 +0,0 @@ -// RUN: %llvmgcc %s -S -emit-llvm -o - | grep {call void asm} - -union U { int x; char* p; }; -void foo() { - union U bar; - __asm__ volatile("foo %0\n" :: "r"(bar)); -} |