You've already forked linux-packaging-mono
Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
This commit is contained in:
parent
8016999e4d
commit
64ac736ec5
14
external/llvm/test/Transforms/InstCombine/2008-07-08-ShiftOneAndOne.ll
vendored
Normal file
14
external/llvm/test/Transforms/InstCombine/2008-07-08-ShiftOneAndOne.ll
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
|
||||
; RUN: opt < %s -instcombine -S | FileCheck %s
|
||||
|
||||
define i1 @PR2330(i32 %a) {
|
||||
; CHECK-LABEL: @PR2330(
|
||||
; CHECK-NEXT: [[TOBOOL:%.*]] = icmp ne i32 %a, 0
|
||||
; CHECK-NEXT: ret i1 [[TOBOOL]]
|
||||
;
|
||||
%tmp15 = shl i32 1, %a
|
||||
%tmp237 = and i32 %tmp15, 1
|
||||
%toBool = icmp eq i32 %tmp237, 0
|
||||
ret i1 %toBool
|
||||
}
|
||||
|
Reference in New Issue
Block a user