1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00
llvm-mirror/test/Transforms/InstCombine/pr23751.ll
Sanjoy Das 71de44f239 [InstCombine] Fix PR23751.
PR23751 was caused by a missing ``break;`` in r234388.

llvm-svn: 239171
2015-06-05 18:04:42 +00:00

14 lines
289 B
LLVM

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