mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
d4dafd17e1
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202598 91177308-0d34-0410-b5e6-96231b3b80d8
24 lines
995 B
ArmAsm
24 lines
995 B
ArmAsm
! RUN: not llvm-mc %s -arch=sparc -show-encoding 2>&1 | FileCheck %s --check-prefix=V8
|
|
! RUN: llvm-mc %s -arch=sparcv9 -show-encoding | FileCheck %s --check-prefix=V9
|
|
|
|
! V8: error: invalid instruction mnemonic
|
|
! V8-NEXT: addc %g2, %g1, %g3
|
|
! V9: addx %g2, %g1, %g3 ! encoding: [0x86,0x40,0x80,0x01]
|
|
addc %g2, %g1, %g3
|
|
|
|
! V8: error: invalid instruction mnemonic
|
|
! V8-NEXT: addccc %g1, %g2, %g3
|
|
! V9: addxcc %g1, %g2, %g3 ! encoding: [0x86,0xc0,0x40,0x02]
|
|
addccc %g1, %g2, %g3
|
|
|
|
! V8: error: invalid instruction mnemonic
|
|
! V8-NEXT: subc %g2, %g1, %g3
|
|
! V9: subx %g2, %g1, %g3 ! encoding: [0x86,0x60,0x80,0x01]
|
|
subc %g2, %g1, %g3
|
|
|
|
! V8: error: invalid instruction mnemonic
|
|
! V8-NEXT: subccc %g1, %g2, %g3
|
|
! V9: subxcc %g1, %g2, %g3 ! encoding: [0x86,0xe0,0x40,0x02]
|
|
subccc %g1, %g2, %g3
|
|
|