mirror of
https://github.com/jeremysrand/llvm-65816.git
synced 2024-11-18 23:05:00 +00:00
10 lines
263 B
ArmAsm
10 lines
263 B
ArmAsm
|
// RUN: not llvm-mc -arch thumb -mattr=+thumb2 \
|
||
|
// RUN: < %s >/dev/null 2> %t
|
||
|
// RUN: grep "error: destination operands can't be identical" %t | count 4
|
||
|
// rdar://14479780
|
||
|
|
||
|
ldrd r0, r0, [pc, #0]
|
||
|
ldrd r0, r0, [r1, #4]
|
||
|
ldrd r0, r0, [r1], #4
|
||
|
ldrd r0, r0, [r1, #4]!
|