mirror of
https://github.com/RPCS3/llvm.git
synced 2026-01-31 01:25:19 +01:00
Discussed here: http://lists.llvm.org/pipermail/llvm-dev/2018-January/120320.html In preparation for adding support for named vregs we are changing the sigil for physical registers in MIR to '$' from '%'. This will prevent name clashes of named physical register with named vregs. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@323922 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
286 B
YAML
14 lines
286 B
YAML
# RUN: llc -run-pass xray-instrumentation -mtriple=x86_64-unknown-linux-gnu -o - %s | FileCheck %s
|
|
#
|
|
# Make sure we can handle empty functions.
|
|
---
|
|
name: empty
|
|
tracksRegLiveness: true
|
|
liveins:
|
|
- { reg: '$edi'}
|
|
body: |
|
|
bb.0:
|
|
; CHECK-NOT: PATCHABLE_FUNCTION_ENTER
|
|
...
|
|
|