[SCFToGPU] Convert scf.parallel+scf.reduce to gpu.all_reduce (#122782)
[llvm-project.git] / llvm / test / CodeGen / MIR / X86 / dead-register-flag.mir
blob3fd179caf28bf54ccdb1518f9508a4e52e6556e1
1 # RUN: llc -mtriple=x86_64 -run-pass none -o - %s | FileCheck %s
2 # This test ensures that the MIR parser parses the 'dead' register flags
3 # correctly.
5 --- |
7   define i32 @foo(i32 %a) #0 {
8   body:
9     %c = mul i32 %a, 11
10     ret i32 %c
11   }
13   attributes #0 = { "frame-pointer"="none" }
15 ...
16 ---
17 name:            foo
18 body: |
19   ; CHECK: bb.0.body:
20   bb.0.body:
21     ; CHECK: $eax = IMUL32rri8 $edi, 11, implicit-def dead $eflags
22     $eax = IMUL32rri8 $edi, 11, implicit-def dead $eflags
23     RET64 $eax
24 ...