forked from OSchip/llvm-project
parent
47c8e7a0e7
commit
325297c101
|
@ -57,7 +57,6 @@ public:
|
||||||
: SelectionDAGISel(targetmachine, OptLevel), TM(targetmachine) {
|
: SelectionDAGISel(targetmachine, OptLevel), TM(targetmachine) {
|
||||||
initializeHexagonDAGToDAGISelPass(*PassRegistry::getPassRegistry());
|
initializeHexagonDAGToDAGISelPass(*PassRegistry::getPassRegistry());
|
||||||
}
|
}
|
||||||
bool hasNumUsesBelowThresGA(SDNode *N) const;
|
|
||||||
|
|
||||||
SDNode *Select(SDNode *N) override;
|
SDNode *Select(SDNode *N) override;
|
||||||
|
|
||||||
|
@ -1455,9 +1454,8 @@ bool HexagonDAGToDAGISel::foldGlobalAddressImpl(SDValue &N, SDValue &R,
|
||||||
|
|
||||||
if (Const && GA &&
|
if (Const && GA &&
|
||||||
(GA->getOpcode() == ISD::TargetGlobalAddress)) {
|
(GA->getOpcode() == ISD::TargetGlobalAddress)) {
|
||||||
if ((N0.getOpcode() == HexagonISD::CONST32) &&
|
if (N0.getOpcode() == HexagonISD::CONST32)
|
||||||
!hasNumUsesBelowThresGA(GA))
|
return false;
|
||||||
return false;
|
|
||||||
R = CurDAG->getTargetGlobalAddress(GA->getGlobal(),
|
R = CurDAG->getTargetGlobalAddress(GA->getGlobal(),
|
||||||
SDLoc(Const),
|
SDLoc(Const),
|
||||||
N.getValueType(),
|
N.getValueType(),
|
||||||
|
|
Loading…
Reference in New Issue