diff options
author | Bob Wilson <bob.wilson@apple.com> | 2011-02-02 17:29:40 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2011-02-02 17:29:40 +0000 |
commit | 92e7195e433435eeb93d5f88de146878b76abb21 (patch) | |
tree | e56998894808db7871705c55941c97d3cbcf371a | |
parent | 56442dfdcf7b07c04b585de5205b9427b1739895 (diff) | |
download | external_llvm-92e7195e433435eeb93d5f88de146878b76abb21.zip external_llvm-92e7195e433435eeb93d5f88de146878b76abb21.tar.gz external_llvm-92e7195e433435eeb93d5f88de146878b76abb21.tar.bz2 |
Update comment to match my recent change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124725 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/ARMJITInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/ARM/ARMJITInfo.cpp b/lib/Target/ARM/ARMJITInfo.cpp index 61c68ef..45b7e48 100644 --- a/lib/Target/ARM/ARMJITInfo.cpp +++ b/lib/Target/ARM/ARMJITInfo.cpp @@ -97,8 +97,8 @@ extern "C" { "str r0, [sp,#16]\n" // Return to the (newly modified) stub to invoke the real function. // The above twiddling of the saved return addresses allows us to - // deallocate everything, including the LR the stub saved, all in one - // pop instruction. + // deallocate everything, including the LR the stub saved, with two + // updating load instructions. "ldmia sp!, {r0, r1, r2, r3, lr}\n" "ldr pc, [sp], #4\n" ); |