Fixed some bugs.
[llvm/zpu.git] / test / FrontendC / 2007-04-11-InlineAsmUnion.c
blob83fe7db771f5f94c22c4185c31c5fc74d6afd016
1 // RUN: %llvmgcc %s -S -emit-llvm -o - | llc
3 union U { int x; float p; };
4 void foo() {
5 union U bar;
6 __asm__ volatile("foo %0\n" : "=r"(bar));