blob: a8983b61d71f84ab895f1dc1b9e6cbf391d74161 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
2
3union U { int x; char* p; };
4void foo() {
5 union U bar;
6 // CHECK: call void asm
7 __asm__ volatile("foo %0\n" :: "r"(bar));
8}