brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.1 KiB · fd613cf Raw
40 lines · plain
1; RUN: opt < %s -passes=globalopt -S | FileCheck %s2target datalayout = "E-p:64:64:64-a0:0:8-f32:32:32-f64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-v64:64:64-v128:128:128"3 4%struct.foo = type { i32, i32 }5@X = internal global ptr null6; CHECK: @X7; CHECK-NOT: @X.f08 9define void @bar(i64 %Size) nounwind noinline #0 {10entry:11  %mallocsize = mul i64 %Size, 8                  ; <i64> [#uses=1]12  %malloccall = tail call ptr @malloc(i64 %mallocsize) ; <ptr> [#uses=1]13	store ptr %malloccall, ptr @X, align 414	ret void15}16 17declare noalias ptr @malloc(i64)18 19define i32 @baz() nounwind readonly noinline #0 {20bb1.thread:21	%0 = load ptr, ptr @X, align 422	br label %bb123 24bb1:		; preds = %bb1, %bb1.thread25	%i.0.reg2mem.0 = phi i32 [ 0, %bb1.thread ], [ %indvar.next, %bb1 ]26	%sum.0.reg2mem.0 = phi i32 [ 0, %bb1.thread ], [ %3, %bb1 ]27	%1 = getelementptr %struct.foo, ptr %0, i32 %i.0.reg2mem.0, i32 028	%2 = load i32, ptr %1, align 429	%3 = add i32 %2, %sum.0.reg2mem.030	%indvar.next = add i32 %i.0.reg2mem.0, 131	%exitcond = icmp eq i32 %indvar.next, 120032	br i1 %exitcond, label %bb2, label %bb133 34bb2:		; preds = %bb135	ret i32 %336}37 38attributes #0 = { null_pointer_is_valid }39 40