reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
; RUN: opt < %s -scalar-evolution-max-arith-depth=0  -indvars  -S | FileCheck %s

target datalayout = "e-m:e-i32:64-f80:128-n8:16:32:64-S128-ni:1"
target triple = "x86_64-unknown-linux-gnu"

; Check that it does not crash because SCEVAddRec's step is not an AddRec.

define void @pr35890(i32* %inc_ptr, i32 %a) {

; CHECK-LABEL: @pr35890(

entry:
  %inc = load i32, i32* %inc_ptr, !range !0
  %ne.cond = icmp ne i32 %inc, 0
  br i1 %ne.cond, label %loop, label %bail

loop:
  %iv = phi i32 [ 0, %entry ], [ %iv.next, %backedge ]
  %a.1 = add i32 %a, 1
  %iv.next = add i32 %iv, %a.1
  %iv.wide = zext i32 %iv to i64
  %iv.square = mul i64 %iv.wide, %iv.wide
  %iv.cube = mul i64 %iv.square, %iv.wide
  %brcond = icmp slt i64 %iv.wide, %iv.cube
  br i1 %brcond, label %if.true, label %if.false

if.true:
  br label %backedge

if.false:
  br label %backedge

backedge:
  %loopcond = icmp slt i32 %iv, 200
  br i1 %loopcond, label %loop, label %exit

exit:
  ret void

bail:
  ret void
}

!0 = !{i32 0, i32 100}