You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[OpenMP][TR12] change property of map-type modifier. (#90499)
map-type change to "default" instead "ultimate" from [OpenMP5.2]
The change is allowed map-type to be placed any locations within map
modifiers, besides the last location in the modifiers-list, also
map-type can be omitted afterward.
def err_omp_sink_and_source_iteration_not_allowd: Error<" '%0 %select{sink:|source:}1' must be with '%select{omp_cur_iteration - 1|omp_cur_iteration}1'">;
1439
1439
def err_omp_unknown_map_type : Error<
1440
1440
"incorrect map type, expected one of 'to', 'from', 'tofrom', 'alloc', 'release', or 'delete'">;
1441
+
def err_omp_more_one_map_type : Error<"map type is already specified">;
1442
+
def note_previous_map_type_specified_here
1443
+
: Note<"map type '%0' is previous specified here">;
1441
1444
def err_omp_unknown_map_type_modifier : Error<
1442
1445
"incorrect map type modifier, expected one of: 'always', 'close', 'mapper'"
0 commit comments