mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
648fe59146
This includes Instructions: tlbginv, tlbginvf, tlbgp, tlbgr, tlbgwi, tlbgwr, hypcall mfgc0, mtgc0, mfhgc0, mthgc0, dmfgc0, dmtgc0, Assembler directives: .set virt, .set novirt, .module virt, .module novirt Attribute: virt .MIPS.abiflags: VZ (0x100) Patch by Vladimir Stefanovic. Differential Revision: https://reviews.llvm.org/D44905 llvm-svn: 331024
10 lines
376 B
ArmAsm
10 lines
376 B
ArmAsm
# RUN: not llvm-mc %s -triple=mips-unknown-linux-gnu -show-encoding \
|
|
# RUN: -mcpu=mips32r5 -mattr=+virt 2>%t1
|
|
# RUN: FileCheck %s < %t1
|
|
# RUN: not llvm-mc %s -triple=mips64-unknown-linux-gnu -show-encoding \
|
|
# RUN: -mcpu=mips64r5 -mattr=+virt 2>%t1
|
|
# RUN: FileCheck %s < %t1
|
|
|
|
.set novirt
|
|
hypcall # CHECK: instruction requires a CPU feature not currently enabled
|