Driver: Make phase names nouns not verbs.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66883 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Driver/Phases.cpp b/lib/Driver/Phases.cpp
index 704540e..71f88ee 100644
--- a/lib/Driver/Phases.cpp
+++ b/lib/Driver/Phases.cpp
@@ -15,11 +15,11 @@
 
 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.");