1; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc64-unknown-linux-gnu -mcpu=a2 | FileCheck %s 2target 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 i32 8 9; Check that the RS spill slot has been allocated (because the estimate 10; will fail the small-frame-size check and the function has spills). 11; CHECK: @foo 12; CHECK: stdu 1, -32768(1) 13 14 %s1 = call i64 @bar(ptr %x) nounwind 15 %s2 = call i64 @bar(ptr %x) nounwind 16 %s3 = call i64 @bar(ptr %x) nounwind 17 %s4 = call i64 @bar(ptr %x) nounwind 18 %s5 = call i64 @bar(ptr %x) nounwind 19 %s6 = call i64 @bar(ptr %x) nounwind 20 %s7 = call i64 @bar(ptr %x) nounwind 21 %s8 = call i64 @bar(ptr %x) nounwind 22 %r = call i64 @can(i64 %s1, i64 %s2, i64 %s3, i64 %s4, i64 %s5, i64 %s6, i64 %s7, i64 %s8) nounwind 23 br label %return 24 25return: 26 ret i64 %r 27} 28 29declare i64 @bar(ptr) 30declare i64 @can(i64, i64, i64, i64, i64, i64, i64, i64) 31 32