mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-02 07:32:52 +00:00
0f040daba7
1. The arch directive now appears before the cpu directive 2. Long run lines were split across multiple lines No functional changes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197588 91177308-0d34-0410-b5e6-96231b3b80d8
21 lines
946 B
ArmAsm
21 lines
946 B
ArmAsm
# RUN: llvm-mc %s -arch=mips -mcpu=mips32r2 -mattr=+msa -show-encoding | FileCheck %s
|
|
#
|
|
# RUN: llvm-mc %s -arch=mips -mcpu=mips32r2 -mattr=+msa -filetype=obj -o - | \
|
|
# RUN: llvm-objdump -d -arch=mips -mattr=+msa - | \
|
|
# RUN: FileCheck %s -check-prefix=CHECKOBJDUMP
|
|
#
|
|
# CHECK: insve.b $w25[3], $w9[0] # encoding: [0x79,0x43,0x4e,0x59]
|
|
# CHECK: insve.h $w24[2], $w2[0] # encoding: [0x79,0x62,0x16,0x19]
|
|
# CHECK: insve.w $w0[2], $w13[0] # encoding: [0x79,0x72,0x68,0x19]
|
|
# CHECK: insve.d $w3[0], $w18[0] # encoding: [0x79,0x78,0x90,0xd9]
|
|
|
|
# CHECKOBJDUMP: insve.b $w25[3], $w9[0]
|
|
# CHECKOBJDUMP: insve.h $w24[2], $w2[0]
|
|
# CHECKOBJDUMP: insve.w $w0[2], $w13[0]
|
|
# CHECKOBJDUMP: insve.d $w3[0], $w18[0]
|
|
|
|
insve.b $w25[3], $w9[0]
|
|
insve.h $w24[2], $w2[0]
|
|
insve.w $w0[2], $w13[0]
|
|
insve.d $w3[0], $w18[0]
|