]> granicus.if.org Git - clang/commitdiff
Driver::IsUsingLTO() no longer return true when seeing -emit-llvm.
authorShuxin Yang <shuxin.llvm@gmail.com>
Wed, 14 Aug 2013 04:36:53 +0000 (04:36 +0000)
committerShuxin Yang <shuxin.llvm@gmail.com>
Wed, 14 Aug 2013 04:36:53 +0000 (04:36 +0000)
The rationale for this change is to differentiate following two situations:
  1) clang -c -emit-llvm a.c
  2) clang -c -flto a.c

Reviewed by Eric Christopher. Thanks a lot!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@188352 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Driver/Driver.cpp

index 32a7d1aafd3f873d0e04acdbc7da745c7d81fb10..e301d89f3f7221290f2f203dfc2f6b610916e8ce 100644 (file)
@@ -1339,6 +1339,10 @@ Action *Driver::ConstructPhaseAction(const ArgList &Args, phases::ID Phase,
       types::ID Output =
         Args.hasArg(options::OPT_S) ? types::TY_LTO_IR : types::TY_LTO_BC;
       return new CompileJobAction(Input, Output);
+    } else if (Args.hasArg(options::OPT_emit_llvm)) {
+      types::ID Output =
+        Args.hasArg(options::OPT_S) ? types::TY_LLVM_IR : types::TY_LLVM_BC;
+      return new CompileJobAction(Input, Output);
     } else {
       return new CompileJobAction(Input, types::TY_PP_Asm);
     }
@@ -1351,9 +1355,7 @@ Action *Driver::ConstructPhaseAction(const ArgList &Args, phases::ID Phase,
 }
 
 bool Driver::IsUsingLTO(const ArgList &Args) const {
-  // Check for -emit-llvm or -flto.
-  if (Args.hasArg(options::OPT_emit_llvm) ||
-      Args.hasFlag(options::OPT_flto, options::OPT_fno_lto, false))
+  if (Args.hasFlag(options::OPT_flto, options::OPT_fno_lto, false))
     return true;
 
   // Check for -O4.