[llvm-commits] [llvm] r93156 - /llvm/trunk/test/CodeGen/X86/2009-02-26-MachineLICMBug.ll
Dan Gohman
gohman at apple.com
Mon Jan 11 09:23:56 PST 2010
Author: djg
Date: Mon Jan 11 11:23:56 2010
New Revision: 93156
URL: http://llvm.org/viewvc/llvm-project?rev=93156&view=rev
Log:
Make this test less trivial, to avoid spurious failures.
Modified:
llvm/trunk/test/CodeGen/X86/2009-02-26-MachineLICMBug.ll
Modified: llvm/trunk/test/CodeGen/X86/2009-02-26-MachineLICMBug.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/2009-02-26-MachineLICMBug.ll?rev=93156&r1=93155&r2=93156&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/2009-02-26-MachineLICMBug.ll (original)
+++ llvm/trunk/test/CodeGen/X86/2009-02-26-MachineLICMBug.ll Mon Jan 11 11:23:56 2010
@@ -6,13 +6,13 @@
%struct.__Rec = type opaque
%struct.__vv = type { }
-define %struct.__vv* @t(%struct.Key* %desc) nounwind ssp {
+define %struct.__vv* @t(%struct.Key* %desc, i64 %p) nounwind ssp {
entry:
br label %bb4
bb4: ; preds = %bb.i, %bb26, %bb4, %entry
%0 = call i32 (...)* @xxGetOffsetForCode(i32 undef) nounwind ; <i32> [#uses=0]
- %ins = or i64 0, 0 ; <i64> [#uses=1]
+ %ins = or i64 %p, 2097152 ; <i64> [#uses=1]
%1 = call i32 (...)* @xxCalculateMidType(%struct.Key* %desc, i32 0) nounwind ; <i32> [#uses=1]
%cond = icmp eq i32 %1, 1 ; <i1> [#uses=1]
br i1 %cond, label %bb26, label %bb4
More information about the llvm-commits
mailing list