forked from OSchip/llvm-project
parent
af777bb37c
commit
0a6bd8f170
|
@ -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<SourceUsesOpenMP>, 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<ExtraTokens>;
|
||||
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.
|
||||
|
||||
|
|
Loading…
Reference in New Issue