diff options
-rw-r--r-- | test/CFrontend/2007-04-11-InlineAsmUnion.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/CFrontend/2007-04-11-InlineAsmUnion.c b/test/CFrontend/2007-04-11-InlineAsmUnion.c new file mode 100644 index 0000000000..28ffe73fec --- /dev/null +++ b/test/CFrontend/2007-04-11-InlineAsmUnion.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)); +} |