diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-03-13 11:36:01 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-03-13 11:36:01 +0000 |
commit | 286c39a9934e99d08f8c82f3191af97db72e1cb8 (patch) | |
tree | bbc7bed2d037ae1616371940f9204be24b316205 | |
parent | 2a6270301810a47e30f2e127ebaeeba604b40850 (diff) | |
download | bcm5719-llvm-286c39a9934e99d08f8c82f3191af97db72e1cb8.tar.gz bcm5719-llvm-286c39a9934e99d08f8c82f3191af97db72e1cb8.zip |
Driver: Make phase names nouns not verbs.
llvm-svn: 66883
-rw-r--r-- | clang/lib/Driver/Phases.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/clang/lib/Driver/Phases.cpp b/clang/lib/Driver/Phases.cpp index 704540ed3cd..71f88eec568 100644 --- a/clang/lib/Driver/Phases.cpp +++ b/clang/lib/Driver/Phases.cpp @@ -15,11 +15,11 @@ using namespace clang::driver; const char *phases::getPhaseName(ID Id) { switch (Id) { - case Preprocess: return "preprocess"; - case Precompile: return "precompile"; - case Compile: return "compile"; - case Assemble: return "assemble"; - case Link: return "link"; + case Preprocess: return "preprocesser"; + case Precompile: return "precompiler"; + case Compile: return "compiler"; + case Assemble: return "assembler"; + case Link: return "linker"; } assert(0 && "Invalid phase id."); |