mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 22:04:55 +00:00
73477b9f32
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185554 91177308-0d34-0410-b5e6-96231b3b80d8
25 lines
851 B
ArmAsm
25 lines
851 B
ArmAsm
@ RUN: not llvm-mc -triple=armv7-apple-darwin -mcpu=cortex-a8 -show-encoding -mattr=-trustzone < %s | FileCheck %s -check-prefix=NOTZ
|
|
@ RUN: llvm-mc -triple=armv7-apple-darwin -mcpu=cortex-a8 -show-encoding -mattr=trustzone < %s | FileCheck %s -check-prefix=TZ
|
|
|
|
.syntax unified
|
|
.globl _func
|
|
|
|
@ Check that the assembler processes SMC instructions when TrustZone support is
|
|
@ active and that it rejects them when this feature is not enabled
|
|
|
|
_func:
|
|
@ CHECK: _func
|
|
|
|
|
|
@------------------------------------------------------------------------------
|
|
@ SMC
|
|
@------------------------------------------------------------------------------
|
|
smc #0xf
|
|
smceq #0
|
|
|
|
@ NOTZ-NOT: smc #15
|
|
@ NOTZ-NOT: smceq #0
|
|
@ TZ: smc #15 @ encoding: [0x7f,0x00,0x60,0xe1]
|
|
@ TZ: smceq #0 @ encoding: [0x70,0x00,0x60,0x01]
|
|
|