mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
5a373a526e
In thumb1, NOP is a pseudo-instruction equivalent to mov r8, r8. However the disassembler should not use this alias. llvm-svn: 184703
10 lines
371 B
ArmAsm
10 lines
371 B
ArmAsm
@ RUN: llvm-mc -triple=thumbv6-apple-darwin -show-encoding < %s | FileCheck %s -check-prefix=CHECK-V6
|
|
@ RUN: llvm-mc -triple=thumbv7-apple-darwin -show-encoding < %s | FileCheck %s -check-prefix=CHECK-V7
|
|
|
|
.syntax unified
|
|
|
|
nop
|
|
|
|
@ CHECK-V6: mov r8, r8 @ encoding: [0xc0,0x46]
|
|
@ CHECK-V7: nop @ encoding: [0x00,0xbf]
|