diff options
author | Chris Lattner <sabre@nondot.org> | 2004-01-10 19:07:06 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-01-10 19:07:06 +0000 |
commit | 1499934c64d954286463e6ed054889123c9fd104 (patch) | |
tree | 8cad5e82dc4eec0f4d8cb020786d70537d9344d7 /lib/Bytecode/Writer | |
parent | 81653133b48fce73ffed32fa68317c4bf6d63658 (diff) | |
download | external_llvm-1499934c64d954286463e6ed054889123c9fd104.zip external_llvm-1499934c64d954286463e6ed054889123c9fd104.tar.gz external_llvm-1499934c64d954286463e6ed054889123c9fd104.tar.bz2 |
minor comment tweaks
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10741 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Writer')
-rw-r--r-- | lib/Bytecode/Writer/Writer.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/Bytecode/Writer/Writer.cpp b/lib/Bytecode/Writer/Writer.cpp index 09fd667..570e17f 100644 --- a/lib/Bytecode/Writer/Writer.cpp +++ b/lib/Bytecode/Writer/Writer.cpp @@ -1,4 +1,4 @@ -//===-- Writer.cpp - Library for writing VM bytecode files ----------------===// +//===-- Writer.cpp - Library for writing LLVM bytecode files --------------===// // // The LLVM Compiler Infrastructure // @@ -20,10 +20,6 @@ // didn't use a vector because the stream could end up very large and copying // the whole thing to reallocate would be kinda silly. // -// 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" |