xref: /aosp_15_r20/external/clang/test/CodeGen/2007-04-11-InlineAsmUnion.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 %s -emit-llvm -o -
2 
3 union U { int x; float p; };
foo()4 void foo() {
5   union U bar;
6   __asm__ volatile("foo %0\n" : "=r"(bar));
7 }
8