Improve compatibility with older versions of Windows.
[llvm/msp430.git] / test / FrontendC / 2007-04-11-InlineAsmUnion.c
blob0435d6498ee5e0f9643919b30fc084880924583f
1 // RUN: %llvmgcc %s -S -emit-llvm -o - | llvm-as | llc
3 union U { int x; float p; };
4 void foo() {
5 union U bar;
6 __asm__ volatile("foo %0\n" : "=r"(bar));