Changes For Bug 352
[oota-llvm.git] / lib / Analysis / InstCount.cpp
index 85f580c25d639682a92b824007dd7a47f8536a91..12d16b081e7b3db6b4b383e92f1e14405c3b054e 100644 (file)
@@ -1,4 +1,11 @@
 //===-- InstCount.cpp - Collects the count of all instructions ------------===//
+// 
+//                     The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+// 
+//===----------------------------------------------------------------------===//
 //
 // This pass collects the count of all instructions and reports them 
 //
@@ -7,7 +14,9 @@
 #include "llvm/Pass.h"
 #include "llvm/Function.h"
 #include "llvm/Support/InstVisitor.h"
-#include "Support/Statistic.h"
+#include "llvm/ADT/Statistic.h"
+
+namespace llvm {
 
 namespace {
   Statistic<> TotalInsts ("instcount", "Number of instructions (of all types)");
@@ -55,3 +64,5 @@ bool InstCount::runOnFunction(Function &F) {
   visit(F);
   return false;
 }
+
+} // End llvm namespace