diff options
author | Akira Hatanaka <ahatanaka@mips.com> | 2012-06-14 21:10:56 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanaka@mips.com> | 2012-06-14 21:10:56 +0000 |
commit | 5fd22485a301f2f1e572abb359beda44573d863f (patch) | |
tree | 8a993c9172149d0cc23dde9be5baf8266f988f86 /llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp | |
parent | d8ab16b86f7a252b5896388e84288a8dfb216bb9 (diff) | |
download | bcm5719-llvm-5fd22485a301f2f1e572abb359beda44573d863f.tar.gz bcm5719-llvm-5fd22485a301f2f1e572abb359beda44573d863f.zip |
Fix coding style violations. Remove white spaces and tabs.
llvm-svn: 158471
Diffstat (limited to 'llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp')
-rw-r--r-- | llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp b/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp index 9b4caf65cbf..a7ffa52705f 100644 --- a/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp +++ b/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp @@ -115,7 +115,8 @@ public: CurVal |= (uint64_t)((uint8_t)Data[Offset + Idx]) << (i*8); } - uint64_t Mask = ((uint64_t)(-1) >> (64 - getFixupKindInfo(Kind).TargetSize)); + uint64_t Mask = ((uint64_t)(-1) >> + (64 - getFixupKindInfo(Kind).TargetSize)); CurVal |= Value & Mask; // Write out the fixed up bytes back to the code/data bits. |