31 lines · plain
1# RUN: not llc -mtriple=x86_64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s2 3--- |4 5 define i32 @test(i32 %a) #0 {6 entry:7 %b = alloca i328 store i32 %a, ptr %b9 %c = load i32, ptr %b10 ret i32 %c11 }12 13 attributes #0 = { "frame-pointer"="none" }14 15...16---17name: test18frameInfo:19 maxAlignment: 420fixedStack:21 # CHECK: [[@LINE+1]]:52: unknown key 'isImmutable'22 - { id: 0, type: spill-slot, offset: 0, size: 4, isImmutable: true }23stack:24 - { id: 0, offset: -12, size: 4, alignment: 4 }25body: |26 bb.0.entry:27 MOV32mr %rsp, 1, _, -4, _, %edi28 %eax = COPY %edi29 RET64 %eax30...31