[flang][hlfir] get rid of box when translating scalars to extented value (#125059)
[llvm-project.git] / llvm / test / CodeGen / MIR / X86 / expected-load-or-store-in-memory-operand.mir
blob0d1aac89a59c5034a38adf365f05b843bf4f8b43
1 # RUN: not llc -mtriple=x86_64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
3 --- |
5   define i32 @test(ptr %a) {
6   entry:
7     %b = load i32, ptr %a
8     ret i32 %b
9   }
11 ...
12 ---
13 name:            test
14 tracksRegLiveness: true
15 liveins:
16   - { reg: '$rdi' }
17 body: |
18   bb.0.entry:
19     liveins: $rdi
20   ; CHECK: [[@LINE+1]]:48: expected 'load' or 'store' memory operation
21     $eax = MOV32rm killed $rdi, 1, _, 0, _ :: (4 from %ir.a)
22     RET64 $eax
23 ...