From: Rafael Espindola Date: Fri, 23 May 2014 20:35:47 +0000 (+0000) Subject: Remove a confusing use of a static method. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=0d4e85d19d43434b626dc073f5f4911a26919b68;p=oota-llvm.git Remove a confusing use of a static method. No functionality change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209548 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/XCore/XCoreISelLowering.cpp b/lib/Target/XCore/XCoreISelLowering.cpp index 638d8701fad..3c892b162a4 100644 --- a/lib/Target/XCore/XCoreISelLowering.cpp +++ b/lib/Target/XCore/XCoreISelLowering.cpp @@ -280,7 +280,7 @@ getGlobalAddressWrapper(SDValue GA, const GlobalValue *GV, UnderlyingGV = GA->getAliasee(); if (const GlobalVariable *GVar = dyn_cast(UnderlyingGV)) { if ( ( GVar->isConstant() && - UnderlyingGV->isLocalLinkage(GV->getLinkage()) ) + GV->hasLocalLinkage() ) || ( GVar->hasSection() && StringRef(GVar->getSection()).startswith(".cp.") ) ) return DAG.getNode(XCoreISD::CPRelativeWrapper, dl, MVT::i32, GA);