brintos

brintos / llvm-project-archived public Read only

0
0
Text · 146 B · da4a7b3 Raw
8 lines · c
1// RUN: %clang_cc1 %s -emit-llvm -o -2 3union U { int x; float p; };4void foo(void) {5  union U bar;6  __asm__ volatile("foo %0\n" : "=r"(bar));7}8