diff options
author | Akira Hatanaka <ahatanaka@mips.com> | 2012-08-20 17:53:24 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanaka@mips.com> | 2012-08-20 17:53:24 +0000 |
commit | 11dfbe196ff7894615d5b57447ceb473f2a55750 (patch) | |
tree | 197b502488d3d0d48407dfe288139ad91b09c8ff /llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp | |
parent | 62e6630af9915f4b2e864fa07eda3bc666ad6374 (diff) | |
download | bcm5719-llvm-11dfbe196ff7894615d5b57447ceb473f2a55750.tar.gz bcm5719-llvm-11dfbe196ff7894615d5b57447ceb473f2a55750.zip |
Fix coding style violations in 162135 and 162136.
Patch by Petar Jovanovic.
llvm-svn: 162213
Diffstat (limited to 'llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp')
-rw-r--r-- | llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp b/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp index 67166c919bb..0aea5986140 100644 --- a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp +++ b/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp @@ -307,10 +307,10 @@ void RuntimeDyldELF::resolveARMRelocation(uint8_t *LocalAddress, } void RuntimeDyldELF::resolveMIPSRelocation(uint8_t *LocalAddress, - uint32_t FinalAddress, - uint32_t Value, - uint32_t Type, - int32_t Addend) { + uint32_t FinalAddress, + uint32_t Value, + uint32_t Type, + int32_t Addend) { uint32_t* TargetPtr = (uint32_t*)LocalAddress; Value += Addend; @@ -367,8 +367,8 @@ void RuntimeDyldELF::resolveRelocation(uint8_t *LocalAddress, case Triple::mips: // Fall through. case Triple::mipsel: resolveMIPSRelocation(LocalAddress, (uint32_t)(FinalAddress & 0xffffffffL), - (uint32_t)(Value & 0xffffffffL), Type, - (uint32_t)(Addend & 0xffffffffL)); + (uint32_t)(Value & 0xffffffffL), Type, + (uint32_t)(Addend & 0xffffffffL)); break; default: llvm_unreachable("Unsupported CPU type!"); } |