File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -42,15 +42,6 @@ mlir::omp::ReductionModifier translateReductionModifier(ReductionModifier mod) {
4242 return mlir::omp::ReductionModifier::defaultmod;
4343}
4444
45- // / Check for unsupported map operand types.
46- static void checkMapType (mlir::Location location, mlir::Type type) {
47- if (auto refType = mlir::dyn_cast<fir::ReferenceType>(type))
48- type = refType.getElementType ();
49- if (auto boxType = mlir::dyn_cast_or_null<fir::BoxType>(type))
50- if (!mlir::isa<fir::PointerType>(boxType.getElementType ()))
51- TODO (location, " OMPD_target_data MapOperand BoxType" );
52- }
53-
5445static mlir::omp::ScheduleModifier
5546translateScheduleModifier (const omp::clause::Schedule::OrderingModifier &m) {
5647 switch (m) {
You can’t perform that action at this time.
0 commit comments