diff options
author | Hans Wennborg <hans@hanshq.net> | 2013-08-02 23:21:32 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2013-08-02 23:21:32 +0000 |
commit | 1bd0445e029c1236df8491113011b5631dd16fa5 (patch) | |
tree | c5b409f7b906c43f19a943c428e38e65def656f1 | |
parent | 707754f3e88ad14ef5efe30e3c331e8c25e2838e (diff) | |
download | bcm5719-llvm-1bd0445e029c1236df8491113011b5631dd16fa5.tar.gz bcm5719-llvm-1bd0445e029c1236df8491113011b5631dd16fa5.zip |
Options.td: remove _DASH_DASH
Since LLVM r187675, this is handled by the option parsing code itself.
llvm-svn: 187689
-rw-r--r-- | clang/include/clang/Driver/Options.td | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/clang/include/clang/Driver/Options.td b/clang/include/clang/Driver/Options.td index 18390acc843..28d9a5e9aa3 100644 --- a/clang/include/clang/Driver/Options.td +++ b/clang/include/clang/Driver/Options.td @@ -179,9 +179,6 @@ def ccc_ : Joined<["-"], "ccc-">, Group<internal_Group>, Flags<[Unsupported]>; def _HASH_HASH_HASH : Flag<["-"], "###">, Flags<[DriverOption, CoreOption]>, HelpText<"Print the commands to run for this compilation">; -// The '--' option is here for the sake of compatibility with gcc, but is -// being ignored by the driver. -def _DASH_DASH : Flag<["--"], "">, Flags<[DriverOption]>; def A : JoinedOrSeparate<["-"], "A">; def B : JoinedOrSeparate<["-"], "B">; def CC : Flag<["-"], "CC">, Flags<[CC1Option]>; |