llvm-6502/test/CodeGen/AArch64/print-mrs-system-register.ll
Akira Hatanaka f2f2ef70a0 [AArch64InstPrinter] Use the feature bits of the subtarget passed to the print
method.

This enables the instprinter to print a different system register name based on
the feature bits of the per-function subtarget. 

Differential Revision: http://reviews.llvm.org/D8668 


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@233412 91177308-0d34-0410-b5e6-96231b3b80d8
2015-03-27 20:37:20 +00:00

12 lines
254 B
LLVM

; RUN: llc -mtriple=arm64-apple-darwin %s -o - | FileCheck %s
; CHECK: mrs x0, CPM_IOACC_CTL_EL3
define void @foo1() #0 {
entry:
tail call void asm sideeffect "mrs x0, cpm_ioacc_ctl_el3", ""()
ret void
}
attributes #0 = { "target-cpu"="cyclone" }