Skip to content

Commit

Permalink
Autogen a test for ease of update
Browse files Browse the repository at this point in the history
  • Loading branch information
preames committed Oct 28, 2021
1 parent 112dc16 commit 9ed528e
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions llvm/test/Transforms/IndVarSimplify/pr24783.ll
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt -S -indvars < %s | FileCheck %s

target datalayout = "E-m:e-i64:64-n32:64"
target triple = "powerpc64-unknown-linux-gnu"

define void @f(i32* %end.s, i8** %loc, i32 %p) {
; CHECK-LABEL: @f(
; CHECK-NEXT: entry:
; CHECK-NEXT: [[END:%.*]] = getelementptr inbounds i32, i32* [[END_S:%.*]], i32 [[P:%.*]]
; CHECK-NEXT: br label [[WHILE_BODY_I:%.*]]
; CHECK: while.body.i:
; CHECK-NEXT: br i1 true, label [[LOOP_EXIT:%.*]], label [[WHILE_BODY_I]]
; CHECK: loop.exit:
; CHECK-NEXT: [[END1:%.*]] = bitcast i32* [[END]] to i8*
; CHECK-NEXT: store i8* [[END1]], i8** [[LOC:%.*]], align 8
; CHECK-NEXT: ret void
;
entry:
%end = getelementptr inbounds i32, i32* %end.s, i32 %p
%init = bitcast i32* %end.s to i8*
Expand All @@ -18,9 +29,6 @@ while.body.i:
br i1 %cmp.i, label %loop.exit, label %while.body.i

loop.exit:
; CHECK: loop.exit:
; CHECK: [[END_BCASTED:%[a-z0-9]+]] = bitcast i32* %end to i8*
; CHECK: store i8* [[END_BCASTED]], i8** %loc
%ptr.inc.lcssa = phi i8* [ %ptr.inc, %while.body.i ]
store i8* %ptr.inc.lcssa, i8** %loc
ret void
Expand Down

0 comments on commit 9ed528e

Please sign in to comment.