From: Alexander Musman Date: Fri, 21 Mar 2014 21:25:24 +0000 (+0000) Subject: Test commit X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e037fc669aef603d26562d870b5c28c45b2f84f5;p=clang Test commit git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@204519 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Basic/DiagnosticParseKinds.td b/include/clang/Basic/DiagnosticParseKinds.td index 573748f37b..3f5cee1bfc 100644 --- a/include/clang/Basic/DiagnosticParseKinds.td +++ b/include/clang/Basic/DiagnosticParseKinds.td @@ -845,20 +845,20 @@ def err_seh___finally_block : Error< "%0 only allowed in __finally block">; // OpenMP support. -def warn_pragma_omp_ignored : Warning < +def warn_pragma_omp_ignored : Warning< "unexpected '#pragma omp ...' in program">, InGroup, DefaultIgnore; -def warn_omp_extra_tokens_at_eol : Warning < +def warn_omp_extra_tokens_at_eol : Warning< "extra tokens at the end of '#pragma omp %0' are ignored">, InGroup; -def err_omp_unknown_directive : Error < +def err_omp_unknown_directive : Error< "expected an OpenMP directive">; -def err_omp_unexpected_directive : Error < +def err_omp_unexpected_directive : Error< "unexpected OpenMP directive '#pragma omp %0'">; -def err_omp_expected_punc : Error < +def err_omp_expected_punc : Error< "expected ',' or ')' in '%0' clause">; -def err_omp_unexpected_clause : Error < +def err_omp_unexpected_clause : Error< "unexpected OpenMP clause '%0' in directive '#pragma omp %1'">; -def err_omp_more_one_clause : Error < +def err_omp_more_one_clause : Error< "directive '#pragma omp %0' cannot contain more than one '%1' clause">; } // end of Parse Issue category.