aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-10-14 15:47:16 +0000
committerChris Lattner <sabre@nondot.org>2004-10-14 15:47:16 +0000
commita06b3af2feb4c8a9f717af24243cf51cb7ad97ee (patch)
tree72eae9c929cb6519dea547c4ccf37d3300501565
parent5fb00c5893ab62bc2c2ea6ae972d8841b6cc9add (diff)
downloadexternal_llvm-a06b3af2feb4c8a9f717af24243cf51cb7ad97ee.zip
external_llvm-a06b3af2feb4c8a9f717af24243cf51cb7ad97ee.tar.gz
external_llvm-a06b3af2feb4c8a9f717af24243cf51cb7ad97ee.tar.bz2
Make sure any client of Dominators.h links in Dominators.cpp
Patch by Morten Ofstad git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16987 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/VMCore/Dominators.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/VMCore/Dominators.cpp b/lib/VMCore/Dominators.cpp
index 14ec3cc..a120db4 100644
--- a/lib/VMCore/Dominators.cpp
+++ b/lib/VMCore/Dominators.cpp
@@ -298,6 +298,8 @@ bool DominatorSet::runOnFunction(Function &F) {
return false;
}
+void DominatorSet::stub() {}
+
namespace llvm {
static std::ostream &operator<<(std::ostream &o,
const std::set<BasicBlock*> &BBs) {