diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2011-02-14 19:09:36 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2011-02-14 19:09:36 +0000 |
| commit | ac407594c26f037cd5cf5576536e4a2e3cbd10bc (patch) | |
| tree | 0811c8381aa9a649a110bb98c2ea41e944198273 /lldb/source/Plugins | |
| parent | e2b86a3a83fa9a16576e6818f23e7146d592b8d3 (diff) | |
| download | bcm5719-llvm-ac407594c26f037cd5cf5576536e4a2e3cbd10bc.tar.gz bcm5719-llvm-ac407594c26f037cd5cf5576536e4a2e3cbd10bc.zip | |
Add comment.
llvm-svn: 125509
Diffstat (limited to 'lldb/source/Plugins')
| -rw-r--r-- | lldb/source/Plugins/Process/Utility/ARMUtils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/Utility/ARMUtils.h b/lldb/source/Plugins/Process/Utility/ARMUtils.h index 67125df3a02..e6f7516e8a2 100644 --- a/lldb/source/Plugins/Process/Utility/ARMUtils.h +++ b/lldb/source/Plugins/Process/Utility/ARMUtils.h @@ -62,7 +62,7 @@ static inline uint32_t ARMExpandImm(uint32_t val) // (imm32, carry_out) = ThumbExpandImm_C(imm12, carry_in) static inline uint32_t ThumbExpandImm_C(uint32_t val, uint32_t carry_in, uint32_t &carry_out) { - uint32_t imm32; + uint32_t imm32; // the expaned result const uint32_t i = bit(val, 26); const uint32_t imm3 = bits(val, 14, 12); const uint32_t abcdefgh = bits(val, 7, 0); |

