[llvm-commits] [llvm] r108059 - /llvm/trunk/test/CodeGen/X86/fast-isel-x86.ll
Dan Gohman
gohman at apple.com
Sat Jul 10 15:42:12 PDT 2010
Author: djg
Date: Sat Jul 10 17:42:12 2010
New Revision: 108059
URL: http://llvm.org/viewvc/llvm-project?rev=108059&view=rev
Log:
Fix this test.
Modified:
llvm/trunk/test/CodeGen/X86/fast-isel-x86.ll
Modified: llvm/trunk/test/CodeGen/X86/fast-isel-x86.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/fast-isel-x86.ll?rev=108059&r1=108058&r2=108059&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/fast-isel-x86.ll (original)
+++ llvm/trunk/test/CodeGen/X86/fast-isel-x86.ll Sat Jul 10 17:42:12 2010
@@ -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 @@
; CHECK: ret
@HHH = external global i32
define i32 @test2() nounwind {
- %t = load i32* @H
+ %t = load i32* @HHH
ret i32 %t
}
More information about the llvm-commits
mailing list