1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

make this portable to 64-bit hosts

llvm-svn: 36297
This commit is contained in:
Chris Lattner 2007-04-21 03:35:28 +00:00
parent 59dcbfde67
commit 64516d7a4f

View File

@ -1,6 +1,6 @@
// RUN: %llvmgcc %s -S -emit-llvm -o - | grep {call i32 asm}
union U { int x; char* p; };
union U { int x; float p; };
void foo() {
union U bar;
__asm__ volatile("foo %0\n" : "=r"(bar));