[Alignment][NFC] Use Align with TargetLowering::setMinFunctionAlignment
[llvm-core.git] / test / CodeGen / X86 / GlobalISel / select-intrinsic-x86-flags-read-u32.mir
blob332ec2240c5b601a406025fb18edafbd7991e1b0
1 # NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
2 # RUN: llc -mtriple=i386-- -run-pass=instruction-select -verify-machineinstrs %s -o - | FileCheck %s
4 # Check that we select a the x86.flags.read.u32 intrinsic into a RDFLAGS
5 # instruction. Also check that we constrain the register class of the COPY to
6 # gr32.
8 --- |
9   define void @read_flags() { ret void }
10   ; CHECK-LABEL: name: read_flags
11   ; CHECK: bb.0:
12   ; CHECK:   [[RDFLAGS32_:%[0-9]+]]:gr32 = RDFLAGS32 implicit-def $esp, implicit $esp
13   ; CHECK:   $eax = COPY [[RDFLAGS32_]]
14 ...
16 ---
17 name:            read_flags
18 legalized:       true
19 regBankSelected: true
21 registers:
22   - { id: 0, class: gpr }
24 body:             |
25   bb.0:
26     %0(s32) = G_INTRINSIC_W_SIDE_EFFECTS intrinsic(@llvm.x86.flags.read.u32)
27     $eax = COPY %0(s32)
28 ...