diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-06-07 22:00:26 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-06-07 22:00:26 +0000 |
commit | 4f1bd9e9963239c119db70070db1d68286b3de7e (patch) | |
tree | d1606a0f29f57d16f5db895bb11a151a83cf0f11 /lib/VMCore/Dominators.cpp | |
parent | 6296b3cac5448afe910e9dd7953fb10082721c77 (diff) | |
download | external_llvm-4f1bd9e9963239c119db70070db1d68286b3de7e.tar.gz external_llvm-4f1bd9e9963239c119db70070db1d68286b3de7e.tar.bz2 external_llvm-4f1bd9e9963239c119db70070db1d68286b3de7e.zip |
For PR780:
1. Fix the macros in IncludeFile.h to put everything in the llvm namespace
2. Replace the previous explicit mechanism in all the .h and .cpp files
with the macros in IncludeFile.h
This gets us a consistent mechanism throughout LLVM for ensuring linkage.
Next step is to make sure its used in enough places.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28715 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Dominators.cpp')
-rw-r--r-- | lib/VMCore/Dominators.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/VMCore/Dominators.cpp b/lib/VMCore/Dominators.cpp index a0a6d253b2..35c847f7d6 100644 --- a/lib/VMCore/Dominators.cpp +++ b/lib/VMCore/Dominators.cpp @@ -304,8 +304,6 @@ bool DominatorSet::runOnFunction(Function &F) { return false; } -int DominatorSet::stub; - namespace llvm { static std::ostream &operator<<(std::ostream &o, const std::set<BasicBlock*> &BBs) { @@ -933,3 +931,5 @@ void ETForestBase::print(std::ostream &o, const Module *) const { } o << "\n"; } + +DEFINING_FILE_FOR(DominatorSet) |