diff options
author | Chris Lattner <sabre@nondot.org> | 2003-09-30 03:24:28 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-09-30 03:24:28 +0000 |
commit | a58d2be76f90aaeeccd89e9794ccd053f370cf8e (patch) | |
tree | 87e931be321c72b2ec8e88dfc08bbcb6fc02f1e0 /tools | |
parent | 4148556a9c767fdf3047ae8e004a759356b893dd (diff) | |
download | external_llvm-a58d2be76f90aaeeccd89e9794ccd053f370cf8e.zip external_llvm-a58d2be76f90aaeeccd89e9794ccd053f370cf8e.tar.gz external_llvm-a58d2be76f90aaeeccd89e9794ccd053f370cf8e.tar.bz2 |
Update file headers for renamed files.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8758 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/gccld/GenerateCode.cpp | 2 | ||||
-rw-r--r-- | tools/gccld/Linker.cpp | 16 |
2 files changed, 5 insertions, 13 deletions
diff --git a/tools/gccld/GenerateCode.cpp b/tools/gccld/GenerateCode.cpp index 09583df..7660be5 100644 --- a/tools/gccld/GenerateCode.cpp +++ b/tools/gccld/GenerateCode.cpp @@ -1,4 +1,4 @@ -//===- gencode.cpp - Functions for generating executable files -----------===// +//===- GenerateCode.cpp - Functions for generating executable files ------===// // // This file contains functions for generating executable files once linking // has finished. This includes generating a shell script to run the JIT or diff --git a/tools/gccld/Linker.cpp b/tools/gccld/Linker.cpp index 5957052..0d0dc9f 100644 --- a/tools/gccld/Linker.cpp +++ b/tools/gccld/Linker.cpp @@ -1,15 +1,7 @@ -//===- gccld.cpp - LLVM 'ld' compatible linker ----------------------------===// -// -// This utility is intended to be compatible with GCC, and follows standard -// system 'ld' conventions. As such, the default output file is ./a.out. -// Additionally, this program outputs a shell script that is used to invoke LLI -// to execute the program. In this manner, the generated executable (a.out for -// example), is directly executable, whereas the bytecode file actually lives in -// the a.out.bc file generated by this program. Also, Force is on by default. -// -// Note that if someone (or a script) deletes the executable program generated, -// the .bc file will be left around. Considering that this is a temporary hack, -// I'm not too worried about this. +//===- Linker.cpp - Link together LLVM objects and libraries --------------===// +// +// This file contains routines to handle linking together LLVM bytecode files, +// and to handle annoying things like static libraries. // //===----------------------------------------------------------------------===// |