See test. Judging from PR 1278, at the time the test was committed, the
[oota-llvm.git] / test / FrontendC / 2007-04-13-InlineAsmUnion2.c
1 // RUN: %llvmgcc %s -S -emit-llvm -o - | grep {call void asm}
2
3 union U { int x; char* p; };
4 void foo() {
5   union U bar;
6   __asm__ volatile("foo %0\n" :: "r"(bar));
7 }