declare i32 @getint() declare float @getfloat() declare i32 @getarray(i32* %arg.a) declare i32 @getfarray(float* %arg.a) declare i32 @getch() declare void @putint(i32 %arg.x) declare void @putfloat(float %arg.x) declare void @putarray(i32 %arg.n, i32* %arg.a) declare void @putfarray(i32 %arg.n, float* %arg.a) declare void @putch(i32 %arg.x) declare void @starttime() declare void @stoptime() define void @reverse(i32 %arg.n) { entry: %t1 = alloca i32 %t0 = alloca i32 store i32 %arg.n, i32* %t0 store i32 0, i32* %t1 %t2 = load i32, i32* %t0 %t3 = icmp sle i32 %t2, 1 %t4 = zext i1 %t3 to i32 %t5 = icmp ne i32 %t4, 0 br i1 %t5, label %if.then.1, label %if.else.2 if.then.1: %t6 = call i32 @getint() store i32 %t6, i32* %t1 %t7 = load i32, i32* %t1 call void @putint(i32 %t7) br label %if.end.3 if.else.2: %t9 = call i32 @getint() store i32 %t9, i32* %t1 %t10 = load i32, i32* %t0 %t11 = sub i32 %t10, 1 call void @reverse(i32 %t11) %t13 = load i32, i32* %t1 call void @putint(i32 %t13) br label %if.end.3 if.end.3: ret void } define i32 @main() { entry: %t15 = alloca i32 store i32 200, i32* %t15 %t16 = load i32, i32* %t15 call void @reverse(i32 %t16) ret i32 0 }