1; RUN: opt < %s -canon-freeze -S | FileCheck %s 2; REQUIRES: aarch64-registered-target 3target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128" 4target triple = "aarch64-unknown-linux-gnu" 5 6%struct.arc = type { i32 } 7%struct.g = type { i64, %struct.arc, i64, i64, i64 } 8 9@m = global i64 0 10@h = global %struct.arc* null 11@j = global %struct.g zeroinitializer 12 13define dso_local i32 @main() { 14bb: 15 %tmp = load i64, i64* getelementptr inbounds (%struct.g, %struct.g* @j, i32 0, i32 0), align 8 16 %tmp1 = icmp sgt i64 %tmp, 0 17 br i1 %tmp1, label %bb2, label %bb35 18 19bb2: ; preds = %bb 20 %tmp3 = load i64, i64* @m, align 8 21 %tmp4 = load %struct.arc*, %struct.arc** @h, align 8 22; CHECK: %tmp3.frozen = freeze i64 %tmp3 23 br label %bb5 24 25bb5: ; preds = %bb28, %bb2 26 %tmp6 = phi %struct.arc* [ %tmp4, %bb2 ], [ %tmp31, %bb28 ] 27 %tmp7 = phi i64 [ %tmp3, %bb2 ], [ %tmp12, %bb28 ] 28; CHECK: %tmp7 = phi i64 [ %tmp3.frozen, %bb2 ], [ %tmp12, %bb28 ] 29 %tmp8 = phi i64 [ 0, %bb2 ], [ %tmp11, %bb28 ] 30 %tmp9 = trunc i64 %tmp7 to i32 31 %tmp10 = getelementptr inbounds %struct.arc, %struct.arc* %tmp6, i64 0, i32 0 32 store i32 %tmp9, i32* %tmp10, align 4 33 %tmp11 = add nuw nsw i64 %tmp8, 1 34 %tmp12 = add nsw i64 %tmp7, 1 35; CHECK: %tmp12 = add i64 %tmp7, 1 36 store i64 %tmp12, i64* @m, align 8 37 %tmp13 = load i64, i64* inttoptr (i64 16 to i64*), align 16 38 %tmp14 = freeze i64 %tmp12 39; CHECK-NOT: %tmp14 = freeze i64 %tmp12 40 %tmp15 = freeze i64 %tmp13 41 %tmp16 = sdiv i64 %tmp14, %tmp15 42 %tmp17 = mul i64 %tmp16, %tmp15 43 %tmp18 = sub i64 %tmp14, %tmp17 44 %tmp19 = load i64, i64* inttoptr (i64 24 to i64*), align 8 45 %tmp20 = icmp sgt i64 %tmp18, %tmp19 46 %tmp21 = load i64, i64* inttoptr (i64 32 to i64*), align 32 47 br i1 %tmp20, label %bb22, label %bb28 48 49bb22: ; preds = %bb5 50 %tmp23 = mul nsw i64 %tmp21, %tmp19 51 %tmp24 = sub nsw i64 %tmp18, %tmp19 52 %tmp25 = add nsw i64 %tmp21, -1 53 %tmp26 = mul nsw i64 %tmp25, %tmp24 54 %tmp27 = add nsw i64 %tmp26, %tmp23 55 br label %bb28 56 57bb28: ; preds = %bb22, %bb5 58 %tmp29 = phi i64 [ %tmp27, %bb22 ], [ %tmp21, %bb5 ] 59 %tmp30 = add nsw i64 %tmp29, %tmp16 60 %tmp31 = getelementptr inbounds %struct.arc, %struct.arc* getelementptr inbounds (%struct.g, %struct.g* @j, i32 0, i32 1), i64 %tmp30 61 store %struct.arc* %tmp31, %struct.arc** @h, align 8 62 %tmp32 = load i64, i64* getelementptr inbounds (%struct.g, %struct.g* @j, i32 0, i32 0), align 8 63 %tmp33 = icmp slt i64 %tmp11, %tmp32 64 br i1 %tmp33, label %bb5, label %bb34 65 66bb34: ; preds = %bb28 67 br label %bb35 68 69bb35: ; preds = %bb34, %bb 70 ret i32 0 71} 72