blob: d654a9d2fa562bbb66eef4ab982eec8f7420447e [file] [log] [blame]
# RUN: llc -march=x86-64 -start-after branch-folder -stop-after branch-folder -o /dev/null %s | FileCheck %s
# This test ensures that the MIR parser parses the 'killed' register flags
# correctly.
--- |
define i32 @foo(i32 %a) {
entry:
%0 = icmp sle i32 %a, 10
br i1 %0, label %less, label %exit
less:
ret i32 0
exit:
ret i32 %a
}
...
---
name: foo
body:
- id: 0
name: entry
instructions:
- 'CMP32ri8 %edi, 10, implicit-def %eflags'
- 'JG_1 %bb.2.exit, implicit %eflags'
- id: 1
name: less
instructions:
# CHECK: - '%eax = MOV32r0
# CHECK-NEXT: - 'RETQ killed %eax
- '%eax = MOV32r0 implicit-def %eflags'
- 'RETQ killed %eax'
- id: 2
name: exit
instructions:
# CHECK: - '%eax = COPY killed %edi
# CHECK-NEXT: - 'RETQ killed %eax
- '%eax = COPY killed %edi'
- 'RETQ killed %eax'
...