finegrainify namespacification

llvm-svn: 11130
This commit is contained in:
Chris Lattner 2004-02-05 05:51:40 +00:00
parent dd0c255d14
commit 90b9043ea5
1 changed files with 2 additions and 5 deletions

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