1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00
llvm-mirror/test/MC/Mips/mips1/sd.s
Simon Atanasyan 3cd29893c0 [Mips] Add s.d instruction alias for Mips1
Add support for s.d instruction for Mips1 which expands into two swc1
instructions.

Patch by Mirko Brkusanin.

Differential Revision: https://reviews.llvm.org/D63199

llvm-svn: 363184
2019-06-12 17:52:05 +00:00

14 lines
549 B
ArmAsm

# RUN: llvm-mc -filetype=obj -triple mips -mcpu=mips1 %s -o - \
# RUN: | llvm-objdump -d - | FileCheck %s --check-prefix=MIPS1-EB
# RUN: llvm-mc -filetype=obj -triple mipsel -mcpu=mips1 %s -o - \
# RUN: | llvm-objdump -d - | FileCheck %s --check-prefix=MIPS1-EL
# Check if s.d instruction alias is suported on Mips1.
# MIPS1-EB: 0: e4 c1 00 00 swc1 $f1, 0($6)
# MIPS1-EB: 4: e4 c0 00 04 swc1 $f0, 4($6)
# MIPS1-EL: 0: 00 00 c0 e4 swc1 $f0, 0($6)
# MIPS1-EL: 4: 04 00 c1 e4 swc1 $f1, 4($6)
s.d $f0, 0($6)