diff options
| author | Saleem Abdulrasool <compnerd@compnerd.org> | 2017-06-30 15:15:39 +0000 |
|---|---|---|
| committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2017-06-30 15:15:39 +0000 |
| commit | b91d119f7afd5705ef80171766dff59b6566d24c (patch) | |
| tree | 0e8cac1a5e62d7662fee88bf8d38fa052fb4656c /clang | |
| parent | a517a0a5206666a9237409cc50da6acd64e4b01a (diff) | |
| download | bcm5719-llvm-b91d119f7afd5705ef80171766dff59b6566d24c.tar.gz bcm5719-llvm-b91d119f7afd5705ef80171766dff59b6566d24c.zip | |
Driver: fix option declaration
The option is a "joined" argument. Fix silly copy-paste error. This
allows the parsing to work at runtime.
llvm-svn: 306830
Diffstat (limited to 'clang')
| -rw-r--r-- | clang/include/clang/Driver/CC1Options.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/Driver/CC1Options.td b/clang/include/clang/Driver/CC1Options.td index 5f3ce5e95fe..205f36b723c 100644 --- a/clang/include/clang/Driver/CC1Options.td +++ b/clang/include/clang/Driver/CC1Options.td @@ -145,7 +145,7 @@ def dwarf_debug_flags : Separate<["-"], "dwarf-debug-flags">, HelpText<"The string to embed in the Dwarf debug flags record.">; def compress_debug_sections : Flag<["-", "--"], "compress-debug-sections">, HelpText<"DWARF debug sections compression">; -def compress_debug_sections_EQ : Flag<["-"], "compress-debug-sections=">, +def compress_debug_sections_EQ : Joined<["-"], "compress-debug-sections=">, HelpText<"DWARF debug sections compression type">; def mno_exec_stack : Flag<["-"], "mnoexecstack">, HelpText<"Mark the file as not needing an executable stack">; |

