diff options
Diffstat (limited to 'test/FrontendC/2007-04-11-InlineAsmUnion.c')
-rw-r--r-- | test/FrontendC/2007-04-11-InlineAsmUnion.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/test/FrontendC/2007-04-11-InlineAsmUnion.c b/test/FrontendC/2007-04-11-InlineAsmUnion.c deleted file mode 100644 index 0144701..0000000 --- a/test/FrontendC/2007-04-11-InlineAsmUnion.c +++ /dev/null @@ -1,7 +0,0 @@ -// RUN: %llvmgcc %s -S -o - | llc - -union U { int x; float p; }; -void foo() { - union U bar; - __asm__ volatile("foo %0\n" : "=r"(bar)); -} |