From: Chandler Carruth Date: Mon, 30 Sep 2013 03:55:06 +0000 (+0000) Subject: Switch one of the ignored boolean flag multiclasses to not have an 'f' X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8af75cd47c60643c329d2444a5ae76cda2c9e24d;p=clang Switch one of the ignored boolean flag multiclasses to not have an 'f' prefix. Sort the ignored boolean 'f' flags at the bottom of this file. No functionality changed. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@191651 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Driver/Options.td b/include/clang/Driver/Options.td index dddcf447b6..89c63d7f37 100644 --- a/include/clang/Driver/Options.td +++ b/include/clang/Driver/Options.td @@ -1378,23 +1378,23 @@ def fprofile_dir : Joined<["-"], "fprofile-dir=">, Group; defm profile_use : BooleanFFlag<"profile-use">, Group; def fprofile_use_eq : Joined<["-"], "fprofile-use=">, Group; -defm falign_functions : BooleanFFlag<"align-functions">, Group; +defm align_functions : BooleanFFlag<"align-functions">, Group; def falign_functions_eq : Joined<["-"], "falign-functions=">, Group; -defm tracer : BooleanFFlag<"tracer">, Group; -defm unroll_all_loops : BooleanFFlag<"unroll-all-loops">, Group; -defm sse : BooleanFFlag<"see">, Group; -defm rounding_math : BooleanFFlag<"rounding-math">, Group; -defm profile_values : BooleanFFlag<"profile-values">, Group; -defm profile_correction : BooleanFFlag<"profile-correction">, Group; -defm prefetch_loop_arrays : BooleanFFlag<"prefetch-loop-arrays">, Group; -defm permissive : BooleanFFlag<"permissive">, Group; -defm non_call_exceptions : BooleanFFlag<"non-call-exceptions">, Group; -defm ivopts : BooleanFFlag<"ivopts">, Group; -defm ident : BooleanFFlag<"ident">, Group; -defm gcse : BooleanFFlag<"gcse">, Group; defm eliminate_unused_debug_types : BooleanFFlag<"eliminate-unused-debug-types">, Group; defm float_store : BooleanFFlag<"float-store">, Group; +defm gcse : BooleanFFlag<"gcse">, Group; +defm ident : BooleanFFlag<"ident">, Group; +defm ivopts : BooleanFFlag<"ivopts">, Group; +defm non_call_exceptions : BooleanFFlag<"non-call-exceptions">, Group; +defm permissive : BooleanFFlag<"permissive">, Group; +defm prefetch_loop_arrays : BooleanFFlag<"prefetch-loop-arrays">, Group; +defm profile_correction : BooleanFFlag<"profile-correction">, Group; +defm profile_values : BooleanFFlag<"profile-values">, Group; +defm rounding_math : BooleanFFlag<"rounding-math">, Group; +defm sse : BooleanFFlag<"see">, Group; +defm tracer : BooleanFFlag<"tracer">, Group; +defm unroll_all_loops : BooleanFFlag<"unroll-all-loops">, Group; include "CC1Options.td"