[libc] implement unistd/getentropy (#122692)
[llvm-project.git] / llvm / test / Transforms / LoopStrengthReduce / pr50765.ll
blob1dae1902152f3bf4a5c75fcaac16cca39a2b5790
1 ; RUN: opt -S -loop-reduce < %s | FileCheck %s
3 ;This test produces zero factor that becomes a denumerator and fails an assetion.
5 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128-ni:1-p2:32:8:8:32-ni:2"
6 target triple = "x86_64-unknown-linux-gnu"
8 define void @test(i1 %arg) {
9 ; CHECK-LABEL: test
10 bb:
11   %tmp = load i32, ptr addrspace(3) undef, align 4
12   br label %bb1
14 bb1:                                              ; preds = %bb38, %bb
15   %tmp2 = phi i64 [ undef, %bb ], [ %tmp6, %bb38 ]
16   %tmp3 = phi i32 [ %tmp, %bb ], [ 1, %bb38 ]
17   %tmp4 = add i32 %tmp3, 1
18   %tmp5 = call i32 @llvm.smax.i32(i32 %tmp4, i32 74)
19   %tmp6 = add nuw nsw i64 %tmp2, 1
20   br i1 %arg, label %bb7, label %bb38
22 bb7:                                              ; preds = %bb1
23   %tmp8 = trunc i64 %tmp6 to i32
24   %tmp9 = sub nsw i32 3, %tmp5
25   %tmp10 = mul i32 %tmp9, %tmp8
26   br label %bb11
28 bb11:                                             ; preds = %bb11, %bb7
29   %tmp12 = phi i32 [ undef, %bb7 ], [ %tmp17, %bb11 ]
30   %tmp13 = phi i64 [ 3, %bb7 ], [ %tmp22, %bb11 ]
31   %tmp14 = phi i64 [ undef, %bb7 ], [ %tmp23, %bb11 ]
32   %tmp15 = add i32 %tmp12, %tmp10
33   %tmp16 = add nuw nsw i64 %tmp13, 1
34   %tmp17 = add i32 %tmp15, %tmp10
35   %tmp18 = add i32 %tmp17, undef
36   %tmp19 = sub i32 %tmp18, undef
37   %tmp20 = sext i32 %tmp19 to i64
38   %tmp21 = add nsw i64 undef, %tmp20
39   %tmp22 = add nuw nsw i64 %tmp13, 2
40   %tmp23 = add i64 %tmp14, -2
41   %tmp24 = icmp eq i64 %tmp23, 0
42   br i1 %tmp24, label %bb25, label %bb11
44 bb25:                                             ; preds = %bb11
45   %tmp26 = trunc i64 %tmp16 to i32
46   %tmp27 = icmp ult i32 %tmp26, 52
47   %tmp28 = trunc i64 %tmp22 to i32
48   %tmp29 = mul i32 %tmp9, %tmp28
49   %tmp30 = add i32 undef, %tmp29
50   %tmp31 = mul i32 %tmp30, %tmp8
51   %tmp32 = add i32 undef, %tmp31
52   %tmp33 = add i32 %tmp32, 34
53   %tmp34 = trunc i64 %tmp21 to i32
54   %tmp35 = add i32 %tmp33, undef
55   %tmp36 = sub i32 %tmp35, %tmp34
56   %tmp37 = sext i32 %tmp36 to i64
57   unreachable
59 bb38:                                             ; preds = %bb1
60   br label %bb1
63 ; Function Attrs: nofree nosync nounwind readnone speculatable willreturn
64 declare i32 @llvm.smax.i32(i32, i32) #0
66 attributes #0 = { nofree nosync nounwind readnone speculatable willreturn }