32 lines · plain
1; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc64-unknown-linux-gnu -mcpu=a2 | FileCheck %s2target datalayout = "E-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f128:64:128-n32"3 4define i64 @foo() nounwind {5entry:6 %x = alloca [32568 x i8]7 %"alloca point" = bitcast i32 0 to i328 9; Check that the RS spill slot has been allocated (because the estimate10; will fail the small-frame-size check and the function has spills).11; CHECK: @foo12; CHECK: stdu 1, -32768(1)13 14 %s1 = call i64 @bar(ptr %x) nounwind15 %s2 = call i64 @bar(ptr %x) nounwind16 %s3 = call i64 @bar(ptr %x) nounwind17 %s4 = call i64 @bar(ptr %x) nounwind18 %s5 = call i64 @bar(ptr %x) nounwind19 %s6 = call i64 @bar(ptr %x) nounwind20 %s7 = call i64 @bar(ptr %x) nounwind21 %s8 = call i64 @bar(ptr %x) nounwind22 %r = call i64 @can(i64 %s1, i64 %s2, i64 %s3, i64 %s4, i64 %s5, i64 %s6, i64 %s7, i64 %s8) nounwind23 br label %return24 25return:26 ret i64 %r27}28 29declare i64 @bar(ptr)30declare i64 @can(i64, i64, i64, i64, i64, i64, i64, i64)31 32