Add an option to enable the SSA based peephole optimizer.
[oota-llvm.git] / lib / VMCore / ConstantRange.cpp
index a9e1204de52db2999ff1cb2422e5d2dde56cebaf..e180f12a1a045f2b7fa14fa731c90bc8d266e081 100644 (file)
@@ -26,6 +26,8 @@
 #include "llvm/Instruction.h"
 #include "llvm/ConstantHandling.h"
 
+namespace llvm {
+
 /// Initialize a full (the default) or empty set for the specified type.
 ///
 ConstantRange::ConstantRange(const Type *Ty, bool Full) {
@@ -248,3 +250,5 @@ void ConstantRange::print(std::ostream &OS) const {
 void ConstantRange::dump() const {
   print(std::cerr);
 }
+
+} // End llvm namespace