the various ConstantExpr::get*Ty methods existed to work with issues around
[llvm/stm8.git] / test / FrontendC / 2007-04-13-InlineAsmUnion2.c
bloba0944a7b64077f0f7e48177ae6120316c399dd93
1 // RUN: %llvmgcc %s -S -o - | grep {call void asm}
3 union U { int x; char* p; };
4 void foo() {
5 union U bar;
6 __asm__ volatile("foo %0\n" :: "r"(bar));