mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 02:33:06 +01:00
Fix build break introduced in r231992
llvm-svn: 231996
This commit is contained in:
parent
997aab28ac
commit
445e825bfd
@ -57,7 +57,6 @@ public:
|
||||
: SelectionDAGISel(targetmachine, OptLevel), TM(targetmachine) {
|
||||
initializeHexagonDAGToDAGISelPass(*PassRegistry::getPassRegistry());
|
||||
}
|
||||
bool hasNumUsesBelowThresGA(SDNode *N) const;
|
||||
|
||||
SDNode *Select(SDNode *N) override;
|
||||
|
||||
@ -1455,9 +1454,8 @@ bool HexagonDAGToDAGISel::foldGlobalAddressImpl(SDValue &N, SDValue &R,
|
||||
|
||||
if (Const && GA &&
|
||||
(GA->getOpcode() == ISD::TargetGlobalAddress)) {
|
||||
if ((N0.getOpcode() == HexagonISD::CONST32) &&
|
||||
!hasNumUsesBelowThresGA(GA))
|
||||
return false;
|
||||
if (N0.getOpcode() == HexagonISD::CONST32)
|
||||
return false;
|
||||
R = CurDAG->getTargetGlobalAddress(GA->getGlobal(),
|
||||
SDLoc(Const),
|
||||
N.getValueType(),
|
||||
|
Loading…
Reference in New Issue
Block a user