1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00
llvm-mirror/test/Transforms/InstCombine/PR37526.ll
Alexey Bataev dd30f2354a [InstCombine] Fix PR37526: MinMax patterns produce an infinite loop.
Summary:
This patch fixes PR37526 by simplifying the newly generated LoadInst
instructions. If the pointer address is a bitcast from the pointer to
the NewType, we can just remove this extra bitcast instead of creating
the new one. This fixes the PR37526 + may speed up the whole compilation
process.

Reviewers: spatel, RKSimon, hfinkel

Subscribers: llvm-commits

Differential Revision: https://reviews.llvm.org/D47144

llvm-svn: 332855
2018-05-21 17:46:34 +00:00

23 lines
815 B
LLVM

; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt -instcombine -S < %s | FileCheck %s
define void @PR37526(i32* %pz, i32* %px, i32* %py) {
; CHECK-LABEL: @PR37526(
; CHECK-NEXT: [[T2:%.*]] = load i32, i32* [[PY:%.*]], align 4
; CHECK-NEXT: [[T3:%.*]] = load i32, i32* [[PX:%.*]], align 4
; CHECK-NEXT: [[CMP:%.*]] = icmp slt i32 [[T2]], [[T3]]
; CHECK-NEXT: [[R1:%.*]] = select i1 [[CMP]], i32 [[T3]], i32 [[T2]]
; CHECK-NEXT: store i32 [[R1]], i32* [[PZ:%.*]], align 4
; CHECK-NEXT: ret void
;
%t1 = bitcast i32* %pz to i64*
%t2 = load i32, i32* %py
%t3 = load i32, i32* %px
%cmp = icmp slt i32 %t2, %t3
%select = select i1 %cmp, i32* %px, i32* %py
%bc = bitcast i32* %select to i64*
%r = load i64, i64* %bc
store i64 %r, i64* %t1
ret void
}