diff options
| author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2011-10-28 22:54:24 +0000 |
|---|---|---|
| committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2011-10-28 22:54:24 +0000 |
| commit | d373247d74b21f0c013d4f75c8cff305cff7482e (patch) | |
| tree | b1202921eccda3393a9ee6fb080b35d9874e218d | |
| parent | 5fc727a0c29589d886d38aa074d9bcdff9e1ba5c (diff) | |
| download | bcm5719-llvm-d373247d74b21f0c013d4f75c8cff305cff7482e.tar.gz bcm5719-llvm-d373247d74b21f0c013d4f75c8cff305cff7482e.zip | |
Add an alias option for -error-on-deserialized-decl with joined '='.
llvm-svn: 143239
| -rw-r--r-- | clang/include/clang/Driver/CC1Options.td | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/include/clang/Driver/CC1Options.td b/clang/include/clang/Driver/CC1Options.td index 4b39d6ec550..7e61b6c6ebb 100644 --- a/clang/include/clang/Driver/CC1Options.td +++ b/clang/include/clang/Driver/CC1Options.td @@ -557,6 +557,8 @@ def dump_deserialized_pch_decls : Flag<"-dump-deserialized-decls">, HelpText<"Dump declarations that are deserialized from PCH, for testing">; def error_on_deserialized_pch_decl : Separate<"-error-on-deserialized-decl">, HelpText<"Emit error if a specific declaration is deserialized from PCH, for testing">; +def error_on_deserialized_pch_decl_EQ : Joined<"-error-on-deserialized-decl=">, + Alias<error_on_deserialized_pch_decl>; def fshort_wchar : Flag<"-fshort-wchar">, HelpText<"Force wchar_t to be a short unsigned int">; def fshort_enums : Flag<"-fshort-enums">, |

