diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-10-03 23:03:26 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-10-03 23:03:26 +0000 |
commit | 69e6f90eb2c242f39f3e23ec8db0badafd07e4d2 (patch) | |
tree | 875321481de46311cad4bbb3162045efad737eed /llvm | |
parent | 1eab54f8bac0dd2ef65f14e5860a8ad86695dfdb (diff) | |
download | bcm5719-llvm-69e6f90eb2c242f39f3e23ec8db0badafd07e4d2.tar.gz bcm5719-llvm-69e6f90eb2c242f39f3e23ec8db0badafd07e4d2.zip |
Tidy up. 80 columns.
llvm-svn: 141043
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h b/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h index 982826a5f0f..9982fa68a57 100644 --- a/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h +++ b/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h @@ -637,7 +637,7 @@ namespace ARM_AM { /// floating-point value, then return -1. static inline int getFP64Imm(const APInt &Imm) { uint64_t Sign = Imm.lshr(63).getZExtValue() & 1; - int64_t Exp = (Imm.lshr(52).getSExtValue() & 0x7ff) - 1023; // -1022 to 1023 + int64_t Exp = (Imm.lshr(52).getSExtValue() & 0x7ff) - 1023; // -1022 to 1023 uint64_t Mantissa = Imm.getZExtValue() & 0xfffffffffffffULL; // We can handle 4 bits of mantissa. |