aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/fast-isel-x86.ll
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-07-10 22:42:12 +0000
committerDan Gohman <gohman@apple.com>2010-07-10 22:42:12 +0000
commite695de0c5f0924fcb667ccf19d141491869a9c5e (patch)
tree8d1ba57655beb8be3ad8f87b1bd1860fe41d1741 /test/CodeGen/X86/fast-isel-x86.ll
parent24080a98786cf393740cd035e27dd16c12827892 (diff)
Fix this test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108059 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/fast-isel-x86.ll')
-rw-r--r--test/CodeGen/X86/fast-isel-x86.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/fast-isel-x86.ll b/test/CodeGen/X86/fast-isel-x86.ll
index f7dbe6e2c2..56aeb3a343 100644
--- a/test/CodeGen/X86/fast-isel-x86.ll
+++ b/test/CodeGen/X86/fast-isel-x86.ll
@@ -1,4 +1,4 @@
-; RUN: llc -march=x86 -relocation-model=pic
+; RUN: llc -march=x86 -relocation-model=pic < %s
; This should use flds to set the return value.
; CHECK: test0:
@@ -28,6 +28,6 @@ define void @test1({i32, i32, i32, i32}* sret %p) nounwind {
; CHECK: ret
@HHH = external global i32
define i32 @test2() nounwind {
- %t = load i32* @H
+ %t = load i32* @HHH
ret i32 %t
}