We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6440f4 commit a88f171Copy full SHA for a88f171
mlir/lib/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.cpp
@@ -3993,9 +3993,8 @@ static void collectMapDataFromMapOperands(
3993
llvm::Value *origValue = moduleTranslation.lookupValue(offloadPtr);
3994
auto mapType = convertClauseMapFlags(mapOp.getMapType());
3995
auto mapTypeAlways = llvm::omp::OpenMPOffloadMappingFlags::OMP_MAP_ALWAYS;
3996
- bool isDevicePtr =
3997
- (mapOp.getMapType() & omp::ClauseMapFlags::storage) ==
3998
- omp::ClauseMapFlags::storage;
+ bool isDevicePtr = (mapOp.getMapType() & omp::ClauseMapFlags::storage) ==
+ omp::ClauseMapFlags::storage;
3999
4000
mapData.OriginalValue.push_back(origValue);
4001
mapData.BasePointers.push_back(origValue);
0 commit comments