1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

Fix typos. Regularize include guard.

llvm-svn: 10718
This commit is contained in:
Brian Gaeke 2004-01-08 22:21:58 +00:00
parent 32630b99d1
commit a1f8f69add

View File

@ -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>