summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEli Bendersky <eli.bendersky@intel.com>2012-06-25 10:13:14 +0000
committerEli Bendersky <eli.bendersky@intel.com>2012-06-25 10:13:14 +0000
commitccaddf47086742f62fb7fbf97f6509395f31b957 (patch)
tree07e220fbec97f85de289a55649f62d576bf3a273 /include
parentfd1753bedb89704ea1ad33da71f184013e942e10 (diff)
downloadllvm-ccaddf47086742f62fb7fbf97f6509395f31b957.tar.gz
llvm-ccaddf47086742f62fb7fbf97f6509395f31b957.tar.bz2
llvm-ccaddf47086742f62fb7fbf97f6509395f31b957.tar.xz
The name (and comment describing) of llvm::GetFirstDebuigLocInBasicBlock no longer represents what the function does. Therefore, the function is removed and its functionality is folded into the only place in the code-base where it was being used.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159133 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Transforms/Utils/BasicBlockUtils.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/llvm/Transforms/Utils/BasicBlockUtils.h b/include/llvm/Transforms/Utils/BasicBlockUtils.h
index 2f9dc54541..8a939cc75e 100644
--- a/include/llvm/Transforms/Utils/BasicBlockUtils.h
+++ b/include/llvm/Transforms/Utils/BasicBlockUtils.h
@@ -202,10 +202,6 @@ void SplitLandingPadPredecessors(BasicBlock *OrigBB,ArrayRef<BasicBlock*> Preds,
ReturnInst *FoldReturnIntoUncondBranch(ReturnInst *RI, BasicBlock *BB,
BasicBlock *Pred);
-/// GetFirstDebugLocInBasicBlock - Return first valid DebugLoc entry in a
-/// given basic block.
-DebugLoc GetFirstDebugLocInBasicBlock(const BasicBlock *BB);
-
} // End llvm namespace
#endif