summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2004-01-08 22:21:58 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2004-01-08 22:21:58 +0000
commitd2b40b7f692ebd405707fd0f5b14a797efec6a97 (patch)
tree4a27f40ba430e4fd3827ae7c2fe4f24473ffbf99
parent1abc87ec00c0f7763a2db8d6fd600b25eda2efdd (diff)
downloadllvm-d2b40b7f692ebd405707fd0f5b14a797efec6a97.tar.gz
llvm-d2b40b7f692ebd405707fd0f5b14a797efec6a97.tar.bz2
llvm-d2b40b7f692ebd405707fd0f5b14a797efec6a97.tar.xz
Fix typos. Regularize include guard.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10718 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/Assembly/CachedWriter.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Assembly/CachedWriter.h b/include/llvm/Assembly/CachedWriter.h
index 4acd3de4da..a216736359 100644
--- a/include/llvm/Assembly/CachedWriter.h
+++ b/include/llvm/Assembly/CachedWriter.h
@@ -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>