mirror of
https://github.com/RPCSX/llvm.git
synced 2025-03-01 01:15:55 +00:00
[InstCombine] Fix PR23751.
PR23751 was caused by a missing ``break;`` in r234388. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239171 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f5c04a9da7
commit
46216f7f99
@ -2149,6 +2149,7 @@ bool InstCombiner::OptimizeOverflowCheck(OverflowCheckFlavor OCF, Value *LHS,
|
||||
if (WillNotOverflowSignedAdd(LHS, RHS, OrigI))
|
||||
return SetResult(Builder->CreateNSWAdd(LHS, RHS), Builder->getFalse(),
|
||||
true);
|
||||
break;
|
||||
}
|
||||
|
||||
case OCF_UNSIGNED_SUB:
|
||||
|
13
test/Transforms/InstCombine/pr23751.ll
Normal file
13
test/Transforms/InstCombine/pr23751.ll
Normal file
@ -0,0 +1,13 @@
|
||||
; RUN: opt -instcombine -S < %s | FileCheck %s
|
||||
|
||||
@d = common global i32 0, align 4
|
||||
|
||||
define i1 @f(i8 zeroext %p) #1 {
|
||||
; CHECK-NOT: ret i1 false
|
||||
%1 = zext i8 %p to i32
|
||||
%2 = load i32, i32* @d, align 4
|
||||
%3 = or i32 %2, -2
|
||||
%4 = add nsw i32 %3, %1
|
||||
%5 = icmp ugt i32 %1, %4
|
||||
ret i1 %5
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user