[OptTable] Fix typo VALUE => VALUES (NFCI) (#121523)
[llvm-project.git] / llvm / test / CodeGen / MIR / X86 / cfi-def-cfa-offset.mir
blob527407f4c0150bc16e43672fffd3d1b99fa4e78e
1 # RUN: llc -mtriple=x86_64 -run-pass none -o - %s | FileCheck %s
2 # This test ensures that the MIR parser parses the cfi offset operands
3 # correctly.
5 --- |
7   define void @test() {
8   entry:
9     %tmp = alloca [4168 x i8], align 4
10     ret void
11   }
13 ...
14 ---
15 name:            test
16 tracksRegLiveness: true
17 frameInfo:
18   stackSize:       4040
19 stack:
20   - { id: 0, name: tmp, offset: -4176, size: 4168, alignment: 4 }
21 body: |
22   bb.0.entry:
23     $rsp = SUB64ri32 $rsp, 4040, implicit-def dead $eflags
24     ; CHECK: CFI_INSTRUCTION def_cfa_offset 4048
25     CFI_INSTRUCTION def_cfa_offset 4048
26     $rsp = ADD64ri32 $rsp, 4040, implicit-def dead $eflags
27     RET64
28 ...