diff options
| author | Gabor Greif <ggreif@gmail.com> | 2007-07-05 17:07:56 +0000 |
|---|---|---|
| committer | Gabor Greif <ggreif@gmail.com> | 2007-07-05 17:07:56 +0000 |
| commit | e16561cd5d459d4f1240431f4b564358024467f4 (patch) | |
| tree | 42db314b3407bf11c48dabcba1d040387bc3eadf /llvm/tools/llvmc/CompilerDriver.h | |
| parent | 5892cfd2636b89e66f59ff5a3829515463d302d5 (diff) | |
| download | bcm5719-llvm-e16561cd5d459d4f1240431f4b564358024467f4.tar.gz bcm5719-llvm-e16561cd5d459d4f1240431f4b564358024467f4.zip | |
Here is the bulk of the sanitizing.
Almost all occurrences of "bytecode" in the sources have been eliminated.
llvm-svn: 37913
Diffstat (limited to 'llvm/tools/llvmc/CompilerDriver.h')
| -rw-r--r-- | llvm/tools/llvmc/CompilerDriver.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/tools/llvmc/CompilerDriver.h b/llvm/tools/llvmc/CompilerDriver.h index 02ec0e9f524..f2be5cc8cfc 100644 --- a/llvm/tools/llvmc/CompilerDriver.h +++ b/llvm/tools/llvmc/CompilerDriver.h @@ -43,10 +43,10 @@ namespace llvm { /// @brief The phases of processing that llvmc understands enum Phases { PREPROCESSING, ///< Source language combining, filtering, substitution - TRANSLATION, ///< Translate source -> LLVM bytecode/assembly + TRANSLATION, ///< Translate source -> LLVM bitcode/assembly OPTIMIZATION, ///< Optimize translation result ASSEMBLY, ///< Convert program to executable - LINKING, ///< Link bytecode and native code + LINKING, ///< Link bitcode and native code NUM_PHASES ///< Always last! }; @@ -129,7 +129,7 @@ namespace llvm { TIME_ACTIONS_FLAG = 0x0010, ///< Time the actions as they execute SHOW_STATS_FLAG = 0x0020, ///< Show pass statistics EMIT_NATIVE_FLAG = 0x0040, ///< Emit native code instead of bc - EMIT_RAW_FLAG = 0x0080, ///< Emit raw, unoptimized bytecode + EMIT_RAW_FLAG = 0x0080, ///< Emit raw, unoptimized bitcode KEEP_TEMPS_FLAG = 0x0100, ///< Don't delete temporary files STRIP_OUTPUT_FLAG = 0x0200, ///< Strip symbols from linked output DRIVER_FLAGS_MASK = 0x03FF ///< Union of the above flags |

