Improve r172468: const_cast is not needed here

llvm-svn: 172483
This commit is contained in:
Dmitri Gribenko 2013-01-14 22:18:18 +00:00
parent 343ecbd6ba
commit f24e57f227
1 changed files with 2 additions and 3 deletions

View File

@ -1016,9 +1016,8 @@ SDValue HexagonTargetLowering::LowerGLOBALADDRESS(SDValue Op,
DebugLoc dl = Op.getDebugLoc();
Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
HexagonTargetObjectFile &TLOF =
static_cast<HexagonTargetObjectFile &>(
const_cast<TargetLoweringObjectFile &>(getObjFileLowering()));
const HexagonTargetObjectFile &TLOF =
static_cast<const HexagonTargetObjectFile &>(getObjFileLowering());
if (TLOF.IsGlobalInSmallSection(GV, getTargetMachine())) {
return DAG.getNode(HexagonISD::CONST32_GP, dl, getPointerTy(), Result);
}