[PATCH] D83061: [OpenMP] Implement TR8 `present` map type modifier in Clang (1/2)
Joel E. Denny via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Jul 17 08:12:19 PDT 2020
jdenny added inline comments.
================
Comment at: clang/include/clang/Basic/DiagnosticParseKinds.td:1252-1253
+ "incorrect map type modifier, expected 'always', 'close', 'mapper', or 'present'">;
+def err_omp_map_type_modifier_wrong_version : Error<
+ "map type modifier '%0' requires OpenMP version %1 or above">;
def err_omp_map_type_missing : Error<
----------------
ABataev wrote:
> Better to keep original message for <= 5.0. This is what we usually do
What message do you mean? Which `err_` diag id?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D83061/new/
https://reviews.llvm.org/D83061
More information about the cfe-commits
mailing list