1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 12:02:58 +02:00
llvm-mirror/test/MC/Mips/sym-expr.s
Daniel Sanders a13734ab15 [mips] Extend ParseJumpTarget to support the full symbol expression syntax.
Summary:
This should fix the issues the D3222 caused in lld. Testcase is based on
the one that failed in the buildbot.

Depends on D3233

Reviewers: matheusalmeida, vmedic

Reviewed By: matheusalmeida

Differential Revision: http://llvm-reviews.chandlerc.com/D3234

llvm-svn: 205298
2014-04-01 10:41:48 +00:00

15 lines
435 B
ArmAsm

# Check parsing symbol expressions
# RUN: llvm-mc -triple=mipsel -show-inst-operands %s 2> %t0
# RUN: FileCheck %s < %t0
.global __start
.ent __start
__start:
nop
loc:
jal __start + 0x4 # CHECK: instruction: [jal, Imm<__start+4>]
jal __start + (-0x10) # CHECK: instruction: [jal, Imm<__start-16>]
jal (__start + (-0x10)) # CHECK: instruction: [jal, Imm<__start-16>]
.end __start