]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/2007-04-11-InlineAsmUnion.c
Vendor import of clang release_30 branch r142614:
[FreeBSD/FreeBSD.git] / test / CodeGen / 2007-04-11-InlineAsmUnion.c
1 // RUN: %clang_cc1 %s -emit-llvm -o -
2
3 union U { int x; float p; };
4 void foo() {
5   union U bar;
6   __asm__ volatile("foo %0\n" : "=r"(bar));
7 }