[llvm-commits] CVS: llvm/include/llvm/Assembly/CachedWriter.h
Brian Gaeke
gaeke at cs.uiuc.edu
Thu Jan 8 16:23:26 PST 2004
Changes in directory llvm/include/llvm/Assembly:
CachedWriter.h updated: 1.12 -> 1.13
---
Log message:
Fix typos. Regularize include guard.
---
Diffs of the changes: (+3 -3)
Index: llvm/include/llvm/Assembly/CachedWriter.h
diff -u llvm/include/llvm/Assembly/CachedWriter.h:1.12 llvm/include/llvm/Assembly/CachedWriter.h:1.13
--- llvm/include/llvm/Assembly/CachedWriter.h:1.12 Tue Nov 11 16:41:31 2003
+++ llvm/include/llvm/Assembly/CachedWriter.h Thu Jan 8 16:21:58 2004
@@ -7,15 +7,15 @@
//
//===----------------------------------------------------------------------===//
//
-// This file defines a 'CacheWriter' class that is used to accelerate printing
+// 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>
More information about the llvm-commits
mailing list