From: Rafael Espindola Date: Thu, 26 Sep 2013 16:21:53 +0000 (+0000) Subject: Remove -fbuiltin-strcat and -fbuiltin-strcpy. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=729be24cd826918bbfa788b8f2313e7d0e2a9b0e;p=clang Remove -fbuiltin-strcat and -fbuiltin-strcpy. These options don't exist in gcc and clang was not handling them. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@191435 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Driver/Options.td b/include/clang/Driver/Options.td index cef39b8d6f..041803e34d 100644 --- a/include/clang/Driver/Options.td +++ b/include/clang/Driver/Options.td @@ -360,8 +360,6 @@ def fbounds_checking : Flag<["-"], "fbounds-checking">, Group, HelpText<"Enable run-time bounds checks">; def fbounds_checking_EQ : Joined<["-"], "fbounds-checking=">, Flags<[CC1Option]>, Group; -def fbuiltin_strcat : Flag<["-"], "fbuiltin-strcat">, Group; -def fbuiltin_strcpy : Flag<["-"], "fbuiltin-strcpy">, Group; def fbuiltin : Flag<["-"], "fbuiltin">, Group; def fcaret_diagnostics : Flag<["-"], "fcaret-diagnostics">, Group; def fcatch_undefined_behavior : Flag<["-"], "fcatch-undefined-behavior">, Group;