mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-28 15:33:14 +00:00
[IRCE] Fix test case; NFC
The (negative) test case is supposed to check that IRCE does not muck with range checks it cannot handle, not that it does the right thing in the absence of profiling information. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@278612 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c56bea66ca
commit
3e63425485
@ -20,7 +20,7 @@ define void @general_affine_expressions(i32 *%arr, i32 *%a_len_ptr, i32 %n,
|
||||
%abc.high = icmp slt i32 %array.idx, %len
|
||||
%abc.low = icmp sge i32 %array.idx, 0
|
||||
%abc = and i1 %abc.low, %abc.high
|
||||
br i1 %abc, label %in.bounds, label %out.of.bounds
|
||||
br i1 %abc, label %in.bounds, label %out.of.bounds, !prof !1
|
||||
|
||||
in.bounds:
|
||||
%addr = getelementptr i32, i32* %arr, i32 %array.idx
|
||||
|
Loading…
Reference in New Issue
Block a user