From 4fa9fd3035780e7733f4b4510d1f98c70f65bfd7 Mon Sep 17 00:00:00 2001 From: Brian Gaeke Date: Fri, 10 Oct 2003 18:47:08 +0000 Subject: [PATCH] Rewrite head-of-file comment. Include instead of . git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9033 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvm-ar/llvm-ar.cpp | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/tools/llvm-ar/llvm-ar.cpp b/tools/llvm-ar/llvm-ar.cpp index c1ec7ecafe2..bb9aef549a9 100644 --- a/tools/llvm-ar/llvm-ar.cpp +++ b/tools/llvm-ar/llvm-ar.cpp @@ -1,26 +1,23 @@ -//===----------------------------------------------------------------------===// -// LLVM 'ar' UTILITY +//===-- tools/llvm-ar/llvm-ar.cpp - LLVM archive librarian utility --------===// // -// This utility may be invoked in the following manner: -// llvm-ar archivename files.. +// Builds up standard unix archive files (.a) containing LLVM bytecode. // //===----------------------------------------------------------------------===// + #include "Support/CommandLine.h" #include "llvm/Bytecode/Reader.h" #include "llvm/Module.h" - #include #include #include #include #include -#include +#include #include #include #include #include - using std::string; using std::vector; using std::cout;