diff options
author | Gabor Greif <ggreif@gmail.com> | 2007-07-09 11:24:05 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2007-07-09 11:24:05 +0000 |
commit | 3bd6e0d9dae8b8c29fd15a52b2c5c9cbeb9d8e78 (patch) | |
tree | 0683d350b0bc8287ab71d50c9840d6ba294202ab /docs/CommandGuide/llvmc.pod | |
parent | 751d173e17e6b2cc1e0c41127b28f5f7fd8cb7be (diff) |
eliminated all references to 'bytecode' from .pod files
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@38452 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CommandGuide/llvmc.pod')
-rw-r--r-- | docs/CommandGuide/llvmc.pod | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/CommandGuide/llvmc.pod b/docs/CommandGuide/llvmc.pod index 9ff258a4a1..5e6cc9513e 100644 --- a/docs/CommandGuide/llvmc.pod +++ b/docs/CommandGuide/llvmc.pod @@ -69,13 +69,13 @@ into a set of basic actions to be done: =item * Pre-processing: gathering/filtering compiler input (optional). -=item * Translation: source language to bytecode conversion. +=item * Translation: source language to bitcode conversion. -=item * Assembly: bytecode to native code conversion. +=item * Assembly: bitcode to native code conversion. -=item * Optimization: conversion of bytecode to something that runs faster. +=item * Optimization: conversion of bitcode to something that runs faster. -=item * Linking: combining multiple bytecodes to produce executable program. +=item * Linking: combining multiple bitcode files to produce executable program. =back @@ -99,7 +99,7 @@ following control options are defined: This option specifies that the linking phase is not to be run. All previous phases, if applicable will run. This is generally how a given -bytecode file is compiled and optimized for a source language module. +bitcode file is compiled and optimized for a source language module. =item B<-k> or B<--link> or default @@ -220,7 +220,7 @@ of the option names the back end to use. =item B<--native> -Normally, B<llvmc> produces bytecode files at most stages of compilation. +Normally, B<llvmc> produces bitcode files at most stages of compilation. With this option, B<llvmc> will arrange for native object files to be generated with the B<-c> option, native assembly files to be generated with the B<-S> option, and native executables to be generated with the |