1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

minor comment tweaks

llvm-svn: 10741
This commit is contained in:
Chris Lattner 2004-01-10 19:07:06 +00:00
parent 00f2e379c6
commit e069cb1c80

View File

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