diff options
author | Chris Lattner <sabre@nondot.org> | 2003-10-13 03:32:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-10-13 03:32:08 +0000 |
commit | 44d2c3514a5ac8008fd16991334470d67dde492e (patch) | |
tree | ded932e2e7b779f86f4f89908be4777ae68be3e6 /llvm/lib/Bytecode | |
parent | c3ad6e0b1f407e756e2921892170e492674dab00 (diff) | |
download | bcm5719-llvm-44d2c3514a5ac8008fd16991334470d67dde492e.tar.gz bcm5719-llvm-44d2c3514a5ac8008fd16991334470d67dde492e.zip |
Regularize header file comments
llvm-svn: 9071
Diffstat (limited to 'llvm/lib/Bytecode')
-rw-r--r-- | llvm/lib/Bytecode/Reader/ReaderInternals.h | 2 | ||||
-rw-r--r-- | llvm/lib/Bytecode/Writer/ConstantWriter.cpp | 6 | ||||
-rw-r--r-- | llvm/lib/Bytecode/Writer/InstructionWriter.cpp | 6 | ||||
-rw-r--r-- | llvm/lib/Bytecode/Writer/Writer.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/Bytecode/Writer/WriterInternals.h | 2 |
5 files changed, 5 insertions, 13 deletions
diff --git a/llvm/lib/Bytecode/Reader/ReaderInternals.h b/llvm/lib/Bytecode/Reader/ReaderInternals.h index 2d75a321313..4d8806a8437 100644 --- a/llvm/lib/Bytecode/Reader/ReaderInternals.h +++ b/llvm/lib/Bytecode/Reader/ReaderInternals.h @@ -1,4 +1,4 @@ -//===-- ReaderInternals.h - Definitions internal to the reader ---*- C++ -*--=// +//===-- ReaderInternals.h - Definitions internal to the reader ------------===// // // This header file defines various stuff that is used by the bytecode reader. // diff --git a/llvm/lib/Bytecode/Writer/ConstantWriter.cpp b/llvm/lib/Bytecode/Writer/ConstantWriter.cpp index 6e52369b163..539f3cd4df6 100644 --- a/llvm/lib/Bytecode/Writer/ConstantWriter.cpp +++ b/llvm/lib/Bytecode/Writer/ConstantWriter.cpp @@ -1,12 +1,8 @@ -//===-- WriteConst.cpp - Functions for writing constants ---------*- C++ -*--=// +//===-- ConstantWriter.cpp - Functions for writing constants --------------===// // // This file implements the routines for encoding constants to a bytecode // stream. // -// Note that the performance of this library is not terribly important, because -// it shouldn't be used by JIT type applications... so it is not a huge focus -// at least. :) -// //===----------------------------------------------------------------------===// #include "WriterInternals.h" diff --git a/llvm/lib/Bytecode/Writer/InstructionWriter.cpp b/llvm/lib/Bytecode/Writer/InstructionWriter.cpp index da32c03e70a..e3a8ffd23b0 100644 --- a/llvm/lib/Bytecode/Writer/InstructionWriter.cpp +++ b/llvm/lib/Bytecode/Writer/InstructionWriter.cpp @@ -1,12 +1,8 @@ -//===-- WriteInst.cpp - Functions for writing instructions -------*- C++ -*--=// +//===-- InstructionWriter.cpp - Functions for writing instructions --------===// // // This file implements the routines for encoding instruction opcodes to a // bytecode stream. // -// Note that the performance of this library is not terribly important, because -// it shouldn't be used by JIT type applications... so it is not a huge focus -// at least. :) -// //===----------------------------------------------------------------------===// #include "WriterInternals.h" diff --git a/llvm/lib/Bytecode/Writer/Writer.cpp b/llvm/lib/Bytecode/Writer/Writer.cpp index f3686372303..413fd293dbd 100644 --- a/llvm/lib/Bytecode/Writer/Writer.cpp +++ b/llvm/lib/Bytecode/Writer/Writer.cpp @@ -1,4 +1,4 @@ -//===-- Writer.cpp - Library for writing VM bytecode files -------*- C++ -*--=// +//===-- Writer.cpp - Library for writing VM bytecode files ----------------===// // // This library implements the functionality defined in llvm/Bytecode/Writer.h // diff --git a/llvm/lib/Bytecode/Writer/WriterInternals.h b/llvm/lib/Bytecode/Writer/WriterInternals.h index 20425e0a6c4..98fdec2b556 100644 --- a/llvm/lib/Bytecode/Writer/WriterInternals.h +++ b/llvm/lib/Bytecode/Writer/WriterInternals.h @@ -1,4 +1,4 @@ -//===-- WriterInternals.h - Data structures shared by the Writer -*- C++ -*--=// +//===- WriterInternals.h - Data structures shared by the Writer -*- C++ -*-===// // // This header defines the interface used between components of the bytecode // writer. |