Optimizations got their own header files
Optimizations now live in the 'opt' namespace
include/llvm/Opt was renamed include/llvm/Optimizations
llvm-svn: 113
diff --git a/llvm/lib/VMCore/ConstantHandling.cpp b/llvm/lib/VMCore/ConstantHandling.cpp
index 438ea4b..54a7980 100644
--- a/llvm/lib/VMCore/ConstantHandling.cpp
+++ b/llvm/lib/VMCore/ConstantHandling.cpp
@@ -4,7 +4,9 @@
//
//===----------------------------------------------------------------------===//
-#include "llvm/Opt/ConstantHandling.h"
+#include "llvm/Optimizations/ConstantHandling.h"
+
+namespace opt {
//===----------------------------------------------------------------------===//
// TemplateRules Class
@@ -195,3 +197,6 @@
Ty->setConstRules(Result); // Cache the value for future short circuiting!
return Result;
}
+
+
+} // End namespace opt