From 333b6f0ec03f0c955e0879c9b38cda04426262a3 Mon Sep 17 00:00:00 2001 From: Davide Italiano Date: Mon, 15 May 2017 22:10:15 +0000 Subject: [PATCH] [AMDGPU] Kill now unused phiInfoElementGetDebugLoc(). NFCI. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@303122 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/AMDGPU/AMDGPUMachineCFGStructurizer.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/Target/AMDGPU/AMDGPUMachineCFGStructurizer.cpp b/lib/Target/AMDGPU/AMDGPUMachineCFGStructurizer.cpp index 442f86e3358..ab8b137aa1b 100644 --- a/lib/Target/AMDGPU/AMDGPUMachineCFGStructurizer.cpp +++ b/lib/Target/AMDGPU/AMDGPUMachineCFGStructurizer.cpp @@ -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; -- 2.50.1