[HLSL] Introduce address space `hlsl_constant(2)` for constant buffer declarations...
[llvm-project.git] / llvm / test / CodeGen / MIR / X86 / spill-slot-fixed-stack-object-immutable.mir
blobf8f6edd5ca6f956ab9458efab6be49a61f991f7b
1 # RUN: not llc -mtriple=x86_64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
3 --- |
5   define i32 @test(i32 %a) #0 {
6   entry:
7     %b = alloca i32
8     store i32 %a, ptr %b
9     %c = load i32, ptr %b
10     ret i32 %c
11   }
13   attributes #0 = { "frame-pointer"="none" }
15 ...
16 ---
17 name:            test
18 frameInfo:
19   maxAlignment:    4
20 fixedStack:
21   # CHECK: [[@LINE+1]]:52: unknown key 'isImmutable'
22   - { id: 0, type: spill-slot, offset: 0, size: 4, isImmutable: true }
23 stack:
24   - { id: 0, offset: -12, size: 4, alignment: 4 }
25 body: |
26   bb.0.entry:
27     MOV32mr %rsp, 1, _, -4, _, %edi
28     %eax = COPY %edi
29     RET64 %eax
30 ...