1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00
Eric Christopher a62270de2c Revert "Temporarily Revert "Add basic loop fusion pass.""
The reversion apparently deleted the test/Transforms directory.

Will be re-reverting again.

llvm-svn: 358552
2019-04-17 04:52:47 +00:00

71 lines
1.9 KiB
LLVM

; RUN: opt -gvn-sink -S < %s | FileCheck %s
%struct = type {i32, i32}
%struct2 = type { [ 2 x i32], i32 }
; Struct indices cannot be variant.
; CHECK-LABEL: @f() {
; CHECK: getelementptr
; CHECK: getelementptr
define void @f() {
bb:
br i1 undef, label %bb2, label %bb1
bb1: ; preds = %bb
%tmp = getelementptr inbounds %struct, %struct* null, i64 0, i32 1
br label %bb4
bb2: ; preds = %bb
%tmp3 = getelementptr inbounds %struct, %struct* null, i64 0, i32 0
br label %bb4
bb4: ; preds = %bb2, %bb1
%tmp5 = phi i32 [ 1, %bb1 ], [ 0, %bb2 ]
ret void
}
; Struct indices cannot be variant.
; CHECK-LABEL: @g() {
; CHECK: getelementptr
; CHECK: getelementptr
define void @g() {
bb:
br i1 undef, label %bb2, label %bb1
bb1: ; preds = %bb
%tmp = getelementptr inbounds %struct2, %struct2* null, i64 0, i32 0, i32 1
br label %bb4
bb2: ; preds = %bb
%tmp3 = getelementptr inbounds %struct2, %struct2* null, i64 0, i32 0, i32 0
br label %bb4
bb4: ; preds = %bb2, %bb1
%tmp5 = phi i32 [ 1, %bb1 ], [ 0, %bb2 ]
ret void
}
; ... but the first parameter to a GEP can.
; CHECK-LABEL: @h() {
; CHECK: getelementptr
; CHECK-NOT: getelementptr
define void @h() {
bb:
br i1 undef, label %bb2, label %bb1
bb1: ; preds = %bb
%tmp = getelementptr inbounds %struct, %struct* null, i32 0, i32 0
br label %bb4
bb2: ; preds = %bb
%tmp3 = getelementptr inbounds %struct, %struct* null, i32 1, i32 0
br label %bb4
bb4: ; preds = %bb2, %bb1
%tmp5 = phi i32 [ 0, %bb1 ], [ 1, %bb2 ]
ret void
}