diff options
author | Nico Weber <nicolasweber@gmx.de> | 2015-10-29 20:53:49 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2015-10-29 20:53:49 +0000 |
commit | e8df6750f434af5ce85a8683e6dea445973c9eb7 (patch) | |
tree | 8e6e29e603c90c1150e8838f469467464765ad37 | |
parent | b00cc6217b9a7394d4d035f143e63bec07ed01e2 (diff) | |
download | bcm5719-llvm-e8df6750f434af5ce85a8683e6dea445973c9eb7.tar.gz bcm5719-llvm-e8df6750f434af5ce85a8683e6dea445973c9eb7.zip |
Mark InternalDebugOpt driver options as CoreOptions.
Mostly has the effect of making -ccc-print-phases usable from clang-cl.
llvm-svn: 251653
-rw-r--r-- | clang/include/clang/Driver/Options.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/Driver/Options.td b/clang/include/clang/Driver/Options.td index c7131f64d98..0d6ed3899a6 100644 --- a/clang/include/clang/Driver/Options.td +++ b/clang/include/clang/Driver/Options.td @@ -145,7 +145,7 @@ def ccc_pch_is_pth : Flag<["-"], "ccc-pch-is-pth">, InternalDriverOpt, HelpText<"Use pretokenized headers for precompiled headers">; class InternalDebugOpt : Group<internal_debug_Group>, - Flags<[DriverOption, HelpHidden]>; + Flags<[DriverOption, HelpHidden, CoreOption]>; def ccc_install_dir : Separate<["-"], "ccc-install-dir">, InternalDebugOpt, HelpText<"Simulate installation in the given directory">; def ccc_print_phases : Flag<["-"], "ccc-print-phases">, InternalDebugOpt, |