blob: df4cdee77500cd2349ed917fdeaab6054094229b [file] [log] [blame]
Daniel Dunbarb1efcd82009-03-13 11:27:05 +00001//===--- Phases.cpp - Transformations on Driver Types -------------------*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "clang/Driver/Phases.h"
11
12#include <cassert>
13
14using namespace clang::driver;
15
16const char *phases::getPhaseName(ID Id) {
17 switch (Id) {
Daniel Dunbar20933352009-03-13 17:52:07 +000018 case Preprocess: return "preprocessor";
Daniel Dunbar3de1e7c2009-03-13 11:36:01 +000019 case Precompile: return "precompiler";
20 case Compile: return "compiler";
21 case Assemble: return "assembler";
22 case Link: return "linker";
Daniel Dunbarb1efcd82009-03-13 11:27:05 +000023 }
24
25 assert(0 && "Invalid phase id.");
26 return 0;
27}