1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/MC/Mips/double-expand.s
Daniel Sanders 035784dd96 [mips][ias] Move createCpRestoreMemOp to MipsTargetStreamer. NFC.
Summary:
This removes the temporary call to isIntegratedAssemblerRequired() which was
added recently. It's effect is now acheived directly in the MipsTargetStreamer
hierarchy.

Reviewers: sdardis

Subscribers: dsanders, sdardis, llvm-commits

Differential Revision: http://reviews.llvm.org/D19715

llvm-svn: 268058
2016-04-29 16:16:49 +00:00

27 lines
605 B
ArmAsm

# RUN: llvm-mc -triple=mipsel-unknown-linux < %s | FileCheck %s
# RUN: llvm-mc -triple=mipsel-unknown-linux < %s | \
# RUN: llvm-mc -triple=mipsel-unknown-linux | FileCheck %s
.text
branch:
bnez $2, foo
# CHECK-LABEL: branch:
# CHECK: bnez $2, foo
# CHECK: nop
# CHECK-NOT: nop
cprestore:
.option pic2
.cprestore 16
jal foo
# CHECK-LABEL: cprestore:
# CHECK: .cprestore 16
# CHECK: lw $25, %call16(foo)($gp)
# CHECK: jalr $25
# CHECK: nop
# CHECK: lw $gp, 16($sp)
# CHECK-NOT: nop
# CHECK-NOT: lw