mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
[InstCombine] Do not RAUW a constant GEP
canRewriteGEPAsOffset expects to process instructions, not constants. This fixes PR30342. llvm-svn: 281650
This commit is contained in:
parent
3204b2357d
commit
697bc29ab8
@ -625,7 +625,7 @@ static bool canRewriteGEPAsOffset(Value *Start, Value *Base,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!isa<IntToPtrInst>(V) && !isa<PtrToIntInst>(V) &&
|
if (!isa<IntToPtrInst>(V) && !isa<PtrToIntInst>(V) &&
|
||||||
!isa<GEPOperator>(V) && !isa<PHINode>(V))
|
!isa<GetElementPtrInst>(V) && !isa<PHINode>(V))
|
||||||
// We've found some value that we can't explore which is different from
|
// We've found some value that we can't explore which is different from
|
||||||
// the base. Therefore we can't do this transformation.
|
// the base. Therefore we can't do this transformation.
|
||||||
return false;
|
return false;
|
||||||
|
@ -167,4 +167,24 @@ lpad:
|
|||||||
; CHECK: ret i32* %[[PTR]]
|
; CHECK: ret i32* %[[PTR]]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@pr30402 = constant i64 3
|
||||||
|
define i1 @test7() {
|
||||||
|
entry:
|
||||||
|
br label %bb7
|
||||||
|
|
||||||
|
bb7: ; preds = %bb10, %entry-block
|
||||||
|
%phi = phi i64* [ @pr30402, %entry ], [ getelementptr inbounds (i64, i64* @pr30402, i32 1), %bb7 ]
|
||||||
|
%cmp = icmp eq i64* %phi, getelementptr inbounds (i64, i64* @pr30402, i32 1)
|
||||||
|
br i1 %cmp, label %bb10, label %bb7
|
||||||
|
|
||||||
|
bb10:
|
||||||
|
ret i1 %cmp
|
||||||
|
}
|
||||||
|
; CHECK-LABEL: @test7(
|
||||||
|
; CHECK: %[[phi:.*]] = phi i64* [ @pr30402, %entry ], [ getelementptr inbounds (i64, i64* @pr30402, i32 1), %bb7 ]
|
||||||
|
; CHECK: %[[cmp:.*]] = icmp eq i64* %[[phi]], getelementptr inbounds (i64, i64* @pr30402, i32 1)
|
||||||
|
; CHECK: ret i1 %[[cmp]]
|
||||||
|
|
||||||
|
|
||||||
declare i32 @__gxx_personality_v0(...)
|
declare i32 @__gxx_personality_v0(...)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user