summaryrefslogtreecommitdiffstats
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, 7 insertions, 0 deletions
diff --git a/test/FrontendC/2007-04-13-InlineAsmUnion2.c b/test/FrontendC/2007-04-13-InlineAsmUnion2.c
new file mode 100644
index 0000000..284654d
--- /dev/null
+++ b/test/FrontendC/2007-04-13-InlineAsmUnion2.c
@@ -0,0 +1,7 @@
+// 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));
+}