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 | 7d46df36264e7f81f59135c7847fb8dce5642242 (patch) | |
tree | 38e280db1679bdbee8462864e36475e04e580e5f /test/CodeGen/Thumb2 | |
parent | a3af347f38956c1bb7a539c3af131c41fc2d2d01 (diff) |
ARMLoadStoreOptimizer: Fix errata 602117 handling and make testcase actually test for it
This fixes PR23912
Differential Revision: http://reviews.llvm.org/D10620
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240582 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Thumb2')
-rw-r--r-- | test/CodeGen/Thumb2/float-ops.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/Thumb2/float-ops.ll b/test/CodeGen/Thumb2/float-ops.ll index 4c42908ce13..c9f93f2d613 100644 --- a/test/CodeGen/Thumb2/float-ops.ll +++ b/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 |