mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
1c1cc1c5ed
As announced here: http://lists.llvm.org/pipermail/llvm-dev/2019-April/131786.html Grouped option syntax (POSIX Utility Conventions) does not play well with -long-option A subsequent change will reject -long-option.
51 lines
1.2 KiB
Plaintext
51 lines
1.2 KiB
Plaintext
# RUN: llvm-mc -assemble -triple=thumbv8.1m.main -mattr=+mve -filetype=obj %s -o - 2>&1 | \
|
|
# RUN: llvm-objdump -d -r --triple=thumbv8.1m.main --mattr=+mve - | FileCheck %s
|
|
|
|
# Test to check that we can evaluate branches and their targets, i.e.
|
|
# checking that we see branch targets annotations like <$t.0+0xc> in the
|
|
# disassembly.
|
|
|
|
# CHECK: wls lr, r3, #8 <$t.0+0xc>
|
|
# CHECK: vmov q0, q1
|
|
# CHECK: le lr, #-8 <$t.0+0x4>
|
|
|
|
wls lr, r3, #8
|
|
vmov q0, q1
|
|
le lr, #-8
|
|
|
|
|
|
# CHECK: wlstp.8 lr, r3, #8 <$t.0+0x18>
|
|
# CHECK: vmov q0, q1
|
|
# CHECK: letp lr, #-8 <$t.0+0x10>
|
|
|
|
wlstp.8 lr, r3, #8
|
|
vmov q0, q1
|
|
letp lr, #-8
|
|
|
|
|
|
# CHECK: wlstp.16 lr, r3, #8 <$t.0+0x24>
|
|
# CHECK: vmov q0, q1
|
|
# CHECK: letp lr, #-8 <$t.0+0x1c>
|
|
|
|
wlstp.16 lr, r3, #8
|
|
vmov q0, q1
|
|
letp lr, #-8
|
|
|
|
|
|
# CHECK: wlstp.32 lr, r3, #8 <$t.0+0x30>
|
|
# CHECK: vmov q0, q1
|
|
# CHECK: letp lr, #-8 <$t.0+0x28>
|
|
|
|
wlstp.32 lr, r3, #8
|
|
vmov q0, q1
|
|
letp lr, #-8
|
|
|
|
|
|
# CHECK: wlstp.64 lr, r3, #8 <$t.0+0x3c>
|
|
# CHECK: vmov q0, q1
|
|
# CHECK: letp lr, #-8 <$t.0+0x34>
|
|
|
|
wlstp.64 lr, r3, #8
|
|
vmov q0, q1
|
|
letp lr, #-8
|