diff options
author | Tilmann Scheller <t.scheller@samsung.com> | 2014-05-16 16:50:13 +0000 |
---|---|---|
committer | Tilmann Scheller <t.scheller@samsung.com> | 2014-05-16 16:50:13 +0000 |
commit | 83c57436500fca8f09cf00e816470df46bd5ca6f (patch) | |
tree | b69b7f8778f14540e7e143597089e8a103e3ce1c /llvm/lib/Transforms/Utils/CloneModule.cpp | |
parent | 4a3b84d2f5e188eb544bf82e24f12fc78bc2784e (diff) | |
download | llvm-83c57436500fca8f09cf00e816470df46bd5ca6f.zip llvm-83c57436500fca8f09cf00e816470df46bd5ca6f.tar.gz llvm-83c57436500fca8f09cf00e816470df46bd5ca6f.tar.bz2 |
[ARM64] Fix wrong comment in load/store optimization pass.
ldr x1, [x0, #64]
add x0, x0, #64
->
ldr x1, [x0], #64
is not a valid transformation, the correct transformation (and what the code actually does) is:
ldr x1, [x0, #64]
add x0, x0, #64
->
ldr x1, [x0, #64]!
llvm-svn: 208998
Diffstat (limited to 'llvm/lib/Transforms/Utils/CloneModule.cpp')
0 files changed, 0 insertions, 0 deletions