diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2017-08-02 21:16:50 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2017-08-02 21:16:50 +0000 |
commit | 634f103cb52b5cbbb67d1d58fcfc43dc0793c37c (patch) | |
tree | e069ace32e9cbe96c0be91357a73a5383ae4f37a | |
parent | fc9bf50dee23cd30948509a428648c01bd000b63 (diff) | |
download | bcm5719-llvm-634f103cb52b5cbbb67d1d58fcfc43dc0793c37c.tar.gz bcm5719-llvm-634f103cb52b5cbbb67d1d58fcfc43dc0793c37c.zip |
Remove unused diagnostic. NFC.
llvm-svn: 309888
-rw-r--r-- | clang/include/clang/Basic/DiagnosticParseKinds.td | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/clang/include/clang/Basic/DiagnosticParseKinds.td b/clang/include/clang/Basic/DiagnosticParseKinds.td index f39ffeae61f..a73fd5a4b36 100644 --- a/clang/include/clang/Basic/DiagnosticParseKinds.td +++ b/clang/include/clang/Basic/DiagnosticParseKinds.td @@ -893,8 +893,6 @@ def err_pragma_expected_clang_section_name : Error< "expected one of [bss|data|rodata|text] section kind in '#pragma %0'">; def err_pragma_clang_section_expected_equal : Error< "expected '=' following '#pragma clang section %select{invalid|bss|data|rodata|text}0'">; -def err_pragma_clang_section_expected_name_or_clear : Error< - "expected section name or '\"\"' following '#pragma clang section %select{invalid|bss|data|rodata|text}0'">; def warn_pragma_expected_section_name : Warning< "expected a string literal for the section name in '#pragma %0' - ignored">, InGroup<IgnoredPragmas>; |