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