From: Daniel Dunbar Date: Fri, 4 Dec 2009 08:17:18 +0000 (+0000) Subject: Ignore -fsched-interblock and -freorder-blocks to the ignored -f flags, we have X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f13876fac1eb2d384732779a7709575d4ecf27b6;p=clang Ignore -fsched-interblock and -freorder-blocks to the ignored -f flags, we have no plans to support invasive optimization flags. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90558 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Driver/Options.td b/include/clang/Driver/Options.td index ace1a3c16a..54a7bec3e6 100644 --- a/include/clang/Driver/Options.td +++ b/include/clang/Driver/Options.td @@ -277,6 +277,8 @@ def fprofile_arcs : Flag<"-fprofile-arcs">, Group; def fprofile_generate : Flag<"-fprofile-generate">, Group; def framework : Separate<"-framework">, Flags<[LinkerInput]>; def frtti : Flag<"-frtti">, Group; +def fsched_interblock : Flag<"-fsched-interblock">, Group; +def freorder_blocks : Flag<"-freorder-blocks">, Group; def fshort_wchar : Flag<"-fshort-wchar">, Group; def fshow_source_location : Flag<"-fshow-source-location">, Group; def fsigned_bitfields : Flag<"-fsigned-bitfields">, Group;