1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-24 05:23:45 +02:00
llvm-mirror/test/Transforms/InstCombine/2008-07-08-ShiftOneAndOne.ll
Sanjay Patel 7c1912623f update test to FileCheck
llvm-svn: 271837
2016-06-05 16:29:15 +00:00

15 lines
373 B
LLVM

; 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
}