diff options
author | Renato Golin <renato.golin@linaro.org> | 2017-04-23 12:15:30 +0000 |
---|---|---|
committer | Renato Golin <renato.golin@linaro.org> | 2017-04-23 12:15:30 +0000 |
commit | 4abfb3d7414e616cd84034735893528f6ca0c35a (patch) | |
tree | bae49d1d9a15f3a024d91fd1d2e177f41d8a3f32 /llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp | |
parent | cc4a9120f6944a48d1df4c676ee77af3904b4442 (diff) | |
download | bcm5719-llvm-4abfb3d7414e616cd84034735893528f6ca0c35a.tar.gz bcm5719-llvm-4abfb3d7414e616cd84034735893528f6ca0c35a.zip |
Revert "[APInt] Fix a few places that use APInt::getRawData to operate within the normal API."
This reverts commit r301105, 4, 3 and 1, as a follow up of the previous
revert, which broke even more bots.
For reference:
Revert "[APInt] Use operator<<= where possible. NFC"
Revert "[APInt] Use operator<<= instead of shl where possible. NFC"
Revert "[APInt] Use ashInPlace where possible."
PR32754.
llvm-svn: 301111
Diffstat (limited to 'llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp')
-rw-r--r-- | llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp b/llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp index 39f43988b19..7189b5a52c4 100644 --- a/llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp +++ b/llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp @@ -124,7 +124,7 @@ void llvm::HexagonLowerToMC(const MCInstrInfo &MCII, const MachineInstr *MI, // FP immediates are used only when setting GPRs, so they may be dealt // with like regular immediates from this point on. auto Expr = HexagonMCExpr::create( - MCConstantExpr::create(Val.bitcastToAPInt().getZExtValue(), + MCConstantExpr::create(*Val.bitcastToAPInt().getRawData(), AP.OutContext), AP.OutContext); HexagonMCInstrInfo::setMustExtend(*Expr, MustExtend); |