diff options
Diffstat (limited to 'clang/tools/ccc/ccclib/Phases.py')
| -rw-r--r-- | clang/tools/ccc/ccclib/Phases.py | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/clang/tools/ccc/ccclib/Phases.py b/clang/tools/ccc/ccclib/Phases.py index 160e72c06eb..a126027ae6b 100644 --- a/clang/tools/ccc/ccclib/Phases.py +++ b/clang/tools/ccc/ccclib/Phases.py @@ -76,6 +76,10 @@ class SyntaxOnlyPhase(Phase):      def __init__(self):          super(SyntaxOnlyPhase, self).__init__("syntax-only", Phase.eOrderCompile) +class EmitLLVMPhase(Phase): +    def __init__(self): +        super(EmitLLVMPhase, self).__init__("emit-llvm", Phase.eOrderCompile) +  class CompilePhase(Phase):      def __init__(self):          super(CompilePhase, self).__init__("compiler", Phase.eOrderCompile) | 

