[cfe-commits] r64416 - /cfe/trunk/tools/ccc/ccclib/Tools.py

Daniel Dunbar daniel at zuster.org
Thu Feb 12 16:29:22 PST 2009


Author: ddunbar
Date: Thu Feb 12 18:29:22 2009
New Revision: 64416

URL: http://llvm.org/viewvc/llvm-project?rev=64416&view=rev
Log:
Always pass -disable-free to clang when compiling.

Modified:
    cfe/trunk/tools/ccc/ccclib/Tools.py

Modified: cfe/trunk/tools/ccc/ccclib/Tools.py
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/ccc/ccclib/Tools.py?rev=64416&r1=64415&r2=64416&view=diff

==============================================================================
--- cfe/trunk/tools/ccc/ccclib/Tools.py (original)
+++ cfe/trunk/tools/ccc/ccclib/Tools.py Thu Feb 12 18:29:22 2009
@@ -229,6 +229,12 @@
             for arg in arglist.getArgs(arglist.parser.XanalyzerOption):
                 cmd_args.extend(arglist.getValues(arg))
         else:
+            # The make clang go fast button.
+            # 
+            # FIXME: Always pass this, once analyzer is fixed to still
+            # write plist output with it.
+            cmd_args.append('-disable-free')
+
             # Perform argument translation for LLVM backend. This
             # takes some care in reconciling with llvm-gcc. The
             # issue is that llvm-gcc translates these options based on





More information about the cfe-commits mailing list