finegrainify namespacification

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11130 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2004-02-05 05:51:40 +00:00
parent 5a5960978a
commit 270db367e0

View File

@ -30,8 +30,7 @@
#include "llvm/Support/CFG.h"
#include <algorithm>
#include <set>
namespace llvm {
using namespace llvm;
namespace {
// FIXME: This should not be a FunctionPass.
@ -72,7 +71,7 @@ namespace {
RegisterAnalysisGroup<ValueNumbering, LoadVN> Y;
}
Pass *createLoadValueNumberingPass() { return new LoadVN(); }
Pass *llvm::createLoadValueNumberingPass() { return new LoadVN(); }
/// getAnalysisUsage - Does not modify anything. It uses Value Numbering and
@ -388,5 +387,3 @@ bool LoadVN::haveEqualValueNumber(LoadInst *Load, StoreInst *Store,
return true;
}
}
} // End llvm namespace