• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# RUN: not llc -march=x86-64 -start-after branch-folder -stop-after branch-folder -o /dev/null %s 2>&1 | FileCheck %s
2
3--- |
4
5  define void @test() {
6  entry:
7    %tmp = alloca [4168 x i8], align 4
8    ret void
9  }
10
11...
12---
13name:            test
14tracksRegLiveness: true
15frameInfo:
16  stackSize:       4040
17stack:
18  - { id: 0, name: tmp, offset: -4176, size: 4168, alignment: 4 }
19body: |
20  bb.0.entry:
21    %rsp = SUB64ri32 %rsp, 4040, implicit-def dead %eflags
22    ; CHECK: [[@LINE+1]]:41: expected a 32 bit integer (the cfi offset is too large)
23    CFI_INSTRUCTION .cfi_def_cfa_offset 123456789123456
24    %rsp = ADD64ri32 %rsp, 4040, implicit-def dead %eflags
25    RETQ
26...
27
28