]> git.proxmox.com Git - rustc.git/blob - src/llvm/tools/clang/test/CodeGen/2007-04-13-InlineAsmUnion2.c
Imported Upstream version 0.6
[rustc.git] / src / llvm / tools / clang / test / CodeGen / 2007-04-13-InlineAsmUnion2.c
1 // RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
2
3 union U { int x; char* p; };
4 void foo() {
5 union U bar;
6 // CHECK: call void asm
7 __asm__ volatile("foo %0\n" :: "r"(bar));
8 }