diff options
author | Renato Golin <renato.golin@linaro.org> | 2015-06-02 11:47:30 +0000 |
---|---|---|
committer | Renato Golin <renato.golin@linaro.org> | 2015-06-02 11:47:30 +0000 |
commit | 3a7bec86bdf9e73f0224d5c015dcadd1a1dbdc58 (patch) | |
tree | 4aa5a0054d54acc3dd2fa8e6503488b289c6f9ce /llvm/test/CodeGen/Thumb2/float-ops.ll | |
parent | d37be6374b7b279b53ba44cd2fc945ef37477dc8 (diff) | |
download | bcm5719-llvm-3a7bec86bdf9e73f0224d5c015dcadd1a1dbdc58.tar.gz bcm5719-llvm-3a7bec86bdf9e73f0224d5c015dcadd1a1dbdc58.zip |
Revert "ARM: Thumb2 LDRD/STRD supports independent input/output regs"
This reverts commit r238795, as it broke the Thumb2 self-hosting buildbot.
Since self-hosting issues with Clang are hard to investigate, I'm taking the
liberty to revert now, so we can investigate it offline.
llvm-svn: 238821
Diffstat (limited to 'llvm/test/CodeGen/Thumb2/float-ops.ll')
-rw-r--r-- | llvm/test/CodeGen/Thumb2/float-ops.ll | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/Thumb2/float-ops.ll b/llvm/test/CodeGen/Thumb2/float-ops.ll index 4c42908ce13..7ec08f86665 100644 --- a/llvm/test/CodeGen/Thumb2/float-ops.ll +++ b/llvm/test/CodeGen/Thumb2/float-ops.ll @@ -109,7 +109,7 @@ entry: define double @load_d(double* %a) { entry: ; CHECK-LABEL: load_d: -; NONE: ldrd r0, r1, [r0] +; NONE: ldm r0, {r0, r1} ; HARD: vldr d0, [r0] %0 = load double, double* %a, align 8 ret double %0 @@ -127,7 +127,9 @@ entry: define void @store_d(double* %a, double %b) { entry: ; CHECK-LABEL: store_d: -; NONE: strd r2, r3, [r0] +; NONE: mov r1, r3 +; NONE: str r2, [r0] +; NONE: str r1, [r0, #4] ; HARD: vstr d0, [r0] store double %b, double* %a, align 8 ret void |