reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
# RUN: llc -march=x86-64 -run-pass none -o - %s | FileCheck %s
# This test ensures that the MIR parser parses the 'renamable' register flags
# correctly.

--- |
  define void @foo() { ret void }
...
---
name:            foo
body: |
  ; CHECK: bb.0:
  bb.0:
    ; CHECK: renamable $eax = IMUL32rri8 $edi, 11, implicit-def dead $eflags
    renamable $eax = IMUL32rri8 $edi, 11, implicit-def dead $eflags
    RETQ $eax
...