Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / PowerPC / frame-size.ll
bloba9243769736ee6e27b363c0fde4d49511cea6966
1 ; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc64-unknown-linux-gnu -mcpu=a2 | FileCheck %s
2 target 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"
4 define i64 @foo() nounwind {
5 entry:
6   %x = alloca [32568 x i8]
7   %"alloca point" = bitcast i32 0 to i32
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)
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
25 return:
26   ret i64 %r
29 declare i64 @bar(ptr)
30 declare i64 @can(i64, i64, i64, i64, i64, i64, i64, i64)