[cfe-commits] r64887 - /cfe/trunk/tools/ccc/ccclib/Arguments.py
Daniel Dunbar
daniel at zuster.org
Tue Feb 17 21:01:43 PST 2009
Author: ddunbar
Date: Tue Feb 17 23:01:43 2009
New Revision: 64887
URL: http://llvm.org/viewvc/llvm-project?rev=64887&view=rev
Log:
ccc: Forward -ftime-report to clang.
Modified:
cfe/trunk/tools/ccc/ccclib/Arguments.py
Modified: cfe/trunk/tools/ccc/ccclib/Arguments.py
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/ccc/ccclib/Arguments.py?rev=64887&r1=64886&r2=64887&view=diff
==============================================================================
--- cfe/trunk/tools/ccc/ccclib/Arguments.py (original)
+++ cfe/trunk/tools/ccc/ccclib/Arguments.py Tue Feb 17 23:01:43 2009
@@ -843,7 +843,7 @@
self.f_profileArcsOption = self.addOption(FlagOption('-fprofile-arcs', self.fGroup))
self.f_profileGenerateOption = self.addOption(FlagOption('-fprofile-generate', self.fGroup))
self.f_terminatedVtablesOption = self.addOption(FlagOption('-fterminated-vtables', self.fGroup))
- self.f_timeReportOption = self.addOption(FlagOption('-ftime-report', self.fGroup))
+ self.f_timeReportOption = self.addOption(FlagOption('-ftime-report', self.Clang_fGroup))
self.f_traditionalOption = self.addOption(FlagOption('-ftraditional', self.fGroup))
self.f_unwindTablesOption = self.addOption(FlagOption('-funwind-tables', self.fGroup))
self.f_writableStringsOption = self.addOption(FlagOption('-fwritable-strings', self.Clang_fGroup))
More information about the cfe-commits
mailing list