Skip to content

Commit

Permalink
[OpenMP][MLIR] Fix code bug from llvm#101707
Browse files Browse the repository at this point in the history
  • Loading branch information
TIFitis authored and skatrak committed Sep 16, 2024
1 parent e9961ec commit 57548b0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2604,7 +2604,7 @@ static void collectMapDataFromMapOperands(
mapData.Names.push_back(LLVM::createMappingInformation(
mapOp.getLoc(), *moduleTranslation.getOpenMPBuilder()));
mapData.DevicePointers.push_back(devInfoTy);
mapData.IsAMapping.push_back(true);
mapData.IsAMapping.push_back(false);
mapData.IsAMember.push_back(checkIsAMember(useDevOperands, mapOp));
}
}
Expand Down

0 comments on commit 57548b0

Please sign in to comment.