diff options
author | Chris Lattner <sabre@nondot.org> | 2007-04-21 03:35:28 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-04-21 03:35:28 +0000 |
commit | e1d89558b486e27d483523a2e09ee6cf120ced21 (patch) | |
tree | 38edc72ad2e708df32100185e59428e332561519 | |
parent | 4fc4fab856f9616bb4f42bd658d5c8de89751628 (diff) |
make this portable to 64-bit hosts
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36297 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CFrontend/2007-04-11-InlineAsmUnion.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CFrontend/2007-04-11-InlineAsmUnion.c b/test/CFrontend/2007-04-11-InlineAsmUnion.c index 62e4b5c41c..6394a42bb4 100644 --- a/test/CFrontend/2007-04-11-InlineAsmUnion.c +++ b/test/CFrontend/2007-04-11-InlineAsmUnion.c @@ -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)); |