diff options
author | Matthias Braun <matze@braunis.de> | 2015-06-24 20:03:27 +0000 |
---|---|---|
committer | Matthias Braun <matze@braunis.de> | 2015-06-24 20:03:27 +0000 |
commit | ba3ecc3c804b05e725f46018690b58acb697f3b7 (patch) | |
tree | 518dcf2413ca74a71366161c75842bc45e6b4e9b /llvm/test/CodeGen/Thumb2/float-ops.ll | |
parent | a681ea25ede8ce8b65cb6dbc1742406bbaf88afb (diff) | |
download | bcm5719-llvm-ba3ecc3c804b05e725f46018690b58acb697f3b7.tar.gz bcm5719-llvm-ba3ecc3c804b05e725f46018690b58acb697f3b7.zip |
ARMLoadStoreOptimizer: Fix errata 602117 handling and make testcase actually test for it
This fixes PR23912
Differential Revision: http://reviews.llvm.org/D10620
llvm-svn: 240582
Diffstat (limited to 'llvm/test/CodeGen/Thumb2/float-ops.ll')
-rw-r--r-- | llvm/test/CodeGen/Thumb2/float-ops.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/Thumb2/float-ops.ll b/llvm/test/CodeGen/Thumb2/float-ops.ll index 4c42908ce13..c9f93f2d613 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 |