mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Use LL suffix for literal that should be 64-bits.
This hopefully fixes Windows git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211225 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6c59006684
commit
311ea12506
@ -1640,7 +1640,7 @@ SDValue AMDGPUTargetLowering::LowerFTRUNC(SDValue Op, SelectionDAG &DAG) const {
|
||||
SignBit64 = DAG.getNode(ISD::BITCAST, SL, MVT::i64, SignBit64);
|
||||
|
||||
SDValue BcInt = DAG.getNode(ISD::BITCAST, SL, MVT::i64, Src);
|
||||
const SDValue FractMask = DAG.getConstant((1L << FractBits) - 1, MVT::i64);
|
||||
const SDValue FractMask = DAG.getConstant((1LL << FractBits) - 1, MVT::i64);
|
||||
|
||||
SDValue Shr = DAG.getNode(ISD::SRA, SL, MVT::i64, FractMask, Exp);
|
||||
SDValue Not = DAG.getNOT(SL, Shr, MVT::i64);
|
||||
|
Loading…
x
Reference in New Issue
Block a user