llvm-project/llvm/test/FrontendC/2007-04-11-InlineAsmUnion.c

8 lines
149 B
C
Raw Normal View History

// RUN: %llvmgcc %s -S -emit-llvm -o - | llc
2007-04-12 06:36:10 +08:00
union U { int x; float p; };
2007-04-12 06:36:10 +08:00
void foo() {
union U bar;
__asm__ volatile("foo %0\n" : "=r"(bar));
}