mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
88a1aeb123
This allows us to keep passing reduced masks to SimplifyDemandedBits, but know about all the bits if SimplifyDemandedBits fails. This allows instcombine to simplify cases like the one in the included testcase. llvm-svn: 154011
16 lines
356 B
LLVM
16 lines
356 B
LLVM
; RUN: opt < %s -instcombine -S | FileCheck %s
|
|
|
|
define zeroext i1 @_Z3fooPb(i8* nocapture %x) {
|
|
entry:
|
|
%a = load i8* %x, align 1, !range !0
|
|
%b = and i8 %a, 1
|
|
%tobool = icmp ne i8 %b, 0
|
|
ret i1 %tobool
|
|
}
|
|
|
|
; CHECK: %a = load i8* %x, align 1, !range !0
|
|
; CHECK-NEXT: %tobool = icmp ne i8 %a, 0
|
|
; CHECK-NEXT: ret i1 %tobool
|
|
|
|
!0 = metadata !{i8 0, i8 2}
|