diff options
author | Johnny Chen <johnny.chen@apple.com> | 2010-03-17 17:52:21 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2010-03-17 17:52:21 +0000 |
commit | 8f3004cff2d89196259ef5d60873f673aa121354 (patch) | |
tree | 41cb4a98c82d9186eaedd87fde500a5a24847e56 /llvm/test/CodeGen/ARM/ldrd.ll | |
parent | 6981c258f70884df8c980caf6a0fd7d7fa940225 (diff) | |
download | bcm5719-llvm-8f3004cff2d89196259ef5d60873f673aa121354.tar.gz bcm5719-llvm-8f3004cff2d89196259ef5d60873f673aa121354.zip |
Added sub-formats to the NeonI/NeonXI instructions to further refine the NEONFrm
instructions to help disassembly.
We also changed the output of the addressing modes to omit the '+' from the
assembler syntax #+/-<imm> or +/-<Rm>. See, for example, A8.6.57/58/60.
And modified test cases to not expect '+' in +reg or #+num. For example,
; CHECK: ldr.w r9, [r7, #28]
llvm-svn: 98745
Diffstat (limited to 'llvm/test/CodeGen/ARM/ldrd.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/ldrd.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/ARM/ldrd.ll b/llvm/test/CodeGen/ARM/ldrd.ll index c366e2dca5f..895562a1d31 100644 --- a/llvm/test/CodeGen/ARM/ldrd.ll +++ b/llvm/test/CodeGen/ARM/ldrd.ll @@ -10,10 +10,10 @@ entry: ;V6: ldrd r2, [r2] ;V5: ldr r3, [r2] -;V5: ldr r2, [r2, #+4] +;V5: ldr r2, [r2, #4] ;EABI: ldr r3, [r2] -;EABI: ldr r2, [r2, #+4] +;EABI: ldr r2, [r2, #4] %0 = load i64** @b, align 4 %1 = load i64* %0, align 4 |