[AMDGPU] Kill now unused phiInfoElementGetDebugLoc(). NFCI.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@303122 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Davide Italiano 2017-05-15 22:10:15 +00:00
parent b4a39f7ccd
commit 333b6f0ec0

View File

@ -58,7 +58,6 @@ private:
static unsigned phiInfoElementGetDest(PHIInfoElementT *Info);
static void phiInfoElementSetDef(PHIInfoElementT *Info, unsigned NewDef);
static DebugLoc phiInfoElementGetDebugLoc(PHIInfoElementT *Info);
static PHISourcesT &phiInfoElementGetSources(PHIInfoElementT *Info);
static void phiInfoElementAddSource(PHIInfoElementT *Info, unsigned SourceReg,
MachineBasicBlock *SourceMBB);
@ -125,10 +124,6 @@ void PHILinearize::phiInfoElementSetDef(PHIInfoElementT *Info,
Info->DestReg = NewDef;
}
DebugLoc PHILinearize::phiInfoElementGetDebugLoc(PHIInfoElementT *Info) {
return Info->DL;
}
PHILinearize::PHISourcesT &
PHILinearize::phiInfoElementGetSources(PHIInfoElementT *Info) {
return Info->Sources;