Fix typos. Regularize include guard.
[oota-llvm.git] / include / llvm / Assembly / CachedWriter.h
index c1ef1037ee3f1f16ae9b7e03ec43bed74526956b..a2167363599cce3c8f41131ad126255be484a26c 100644 (file)
@@ -1,18 +1,27 @@
-//===-- llvm/Assembly/CachedWriter.h - Printer Accellerator ------*- C++ -*--=//
+//===-- llvm/Assembly/CachedWriter.h - Printer Accellerator -----*- C++ -*-===//
+// 
+//                     The LLVM Compiler Infrastructure
 //
-// This file defines a 'CacheWriter' class that is used to accelerate printing
+// 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 file defines a 'CachedWriter' class that is used to accelerate printing
 // chunks of LLVM.  This is used when a module is not being changed, but random
 // parts of it need to be printed.  This can greatly speed up printing of LLVM
 // output.
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef LLVM_ASSEMBLY_CACHED_WRITER_H
-#define LLVM_ASSEMBLY_CACHED_WRITER_H
+#ifndef LLVM_ASSEMBLY_CACHEDWRITER_H
+#define LLVM_ASSEMBLY_CACHEDWRITER_H
 
 #include "llvm/Value.h"
 #include <iostream>
 
+namespace llvm {
+
 class Module;
 class PointerType;
 class SlotCalculator;
@@ -75,4 +84,6 @@ public:
   }
 };
 
+} // End llvm namespace
+
 #endif