diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-02-18 05:01:43 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-02-18 05:01:43 +0000 |
commit | 00dbfde0d7d0ef003a5a6bf7de0116636d0c1278 (patch) | |
tree | 5a21c11608cee08c959003505a6fa71048407e6e | |
parent | e47f7b13ac10a668cdd118fabe4bf0e337447073 (diff) |
ccc: Forward -ftime-report to clang.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64887 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/ccc/ccclib/Arguments.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ccc/ccclib/Arguments.py b/tools/ccc/ccclib/Arguments.py index dc9605a899..4a1c7ebbbb 100644 --- a/tools/ccc/ccclib/Arguments.py +++ b/tools/ccc/ccclib/Arguments.py @@ -843,7 +843,7 @@ class OptionParser: 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)) |