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

Update file headers for renamed files.

llvm-svn: 8758
This commit is contained in:
Chris Lattner 2003-09-30 03:24:28 +00:00
parent c253fa6c45
commit 9ca002dd34
2 changed files with 4 additions and 12 deletions

View File

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

View File

@ -1,15 +1,7 @@
//===- gccld.cpp - LLVM 'ld' compatible linker ----------------------------===//
//===- Linker.cpp - Link together LLVM objects and libraries --------------===//
//
// 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.
// This file contains routines to handle linking together LLVM bytecode files,
// and to handle annoying things like static libraries.
//
//===----------------------------------------------------------------------===//