mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
fix file header
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9294 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -7,7 +7,6 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
//
|
//
|
||||||
//
|
|
||||||
// This file contains routines to handle linking together LLVM bytecode files,
|
// This file contains routines to handle linking together LLVM bytecode files,
|
||||||
// and to handle annoying things like static libraries.
|
// and to handle annoying things like static libraries.
|
||||||
//
|
//
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
//
|
//
|
||||||
//
|
|
||||||
// This utility changes the input module to only contain a single function,
|
// This utility changes the input module to only contain a single function,
|
||||||
// which is primarily used for debugging transformations.
|
// which is primarily used for debugging transformations.
|
||||||
//
|
//
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
//
|
//
|
||||||
//
|
|
||||||
// This utility is designed to be used by the GCC frontend for creating bytecode
|
// This utility is designed to be used by the GCC frontend for creating bytecode
|
||||||
// files from its intermediate LLVM assembly. The requirements for this utility
|
// files from its intermediate LLVM assembly. The requirements for this utility
|
||||||
// are thus slightly different than that of the standard `as' util.
|
// are thus slightly different than that of the standard `as' util.
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
//
|
//
|
||||||
//
|
|
||||||
// This file contains functions for generating executable files once linking
|
// This file contains functions for generating executable files once linking
|
||||||
// has finished. This includes generating a shell script to run the JIT or
|
// has finished. This includes generating a shell script to run the JIT or
|
||||||
// a native executable derived from the bytecode.
|
// a native executable derived from the bytecode.
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
//
|
//
|
||||||
//
|
|
||||||
// This file contains routines to handle linking together LLVM bytecode files,
|
// This file contains routines to handle linking together LLVM bytecode files,
|
||||||
// and to handle annoying things like static libraries.
|
// and to handle annoying things like static libraries.
|
||||||
//
|
//
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
//
|
//
|
||||||
//
|
|
||||||
// This utility is intended to be compatible with GCC, and follows standard
|
// This utility is intended to be compatible with GCC, and follows standard
|
||||||
// system 'ld' conventions. As such, the default output file is ./a.out.
|
// 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
|
// Additionally, this program outputs a shell script that is used to invoke LLI
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
//===- util.h - Utility functions header file -----------------------------===//
|
//===- gccld.h - Utility functions header file ----------------------------===//
|
||||||
//
|
//
|
||||||
// The LLVM Compiler Infrastructure
|
// The LLVM Compiler Infrastructure
|
||||||
//
|
//
|
||||||
@ -7,7 +7,6 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
//
|
//
|
||||||
//
|
|
||||||
// This file contains function prototypes for the functions in util.cpp.
|
// This file contains function prototypes for the functions in util.cpp.
|
||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
//===----------------------------------------------------------------------===//
|
//===-- llvm-dis.cpp - The low-level LLVM disassembler --------------------===//
|
||||||
//
|
//
|
||||||
// The LLVM Compiler Infrastructure
|
// The LLVM Compiler Infrastructure
|
||||||
//
|
//
|
||||||
@ -7,8 +7,6 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
//
|
//
|
||||||
// LLVM 'DIS' UTILITY
|
|
||||||
//
|
|
||||||
// This utility may be invoked in the following manner:
|
// This utility may be invoked in the following manner:
|
||||||
// llvm-dis [options] - Read LLVM bytecode from stdin, write asm to stdout
|
// llvm-dis [options] - Read LLVM bytecode from stdin, write asm to stdout
|
||||||
// llvm-dis [options] x.bc - Read LLVM bytecode from the x.bc file, write asm
|
// llvm-dis [options] x.bc - Read LLVM bytecode from the x.bc file, write asm
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
//
|
//
|
||||||
//
|
|
||||||
// This utility changes the input module to only contain a single function,
|
// This utility changes the input module to only contain a single function,
|
||||||
// which is primarily used for debugging transformations.
|
// which is primarily used for debugging transformations.
|
||||||
//
|
//
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
//
|
//
|
||||||
//
|
|
||||||
// This program is a utility that works like traditional Unix "nm",
|
// This program is a utility that works like traditional Unix "nm",
|
||||||
// that is, it prints out the names of symbols in a bytecode file,
|
// that is, it prints out the names of symbols in a bytecode file,
|
||||||
// along with some information about each symbol.
|
// along with some information about each symbol.
|
||||||
|
Reference in New Issue
Block a user