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 f127125 commit afa872fCopy full SHA for afa872f
offload/include/OpenMP/Mapping.h
@@ -53,10 +53,10 @@ struct ShadowPtrInfoTy {
53
int64_t PtrSize = sizeof(void *); // Size of the pointer/descriptor
54
55
// Store the complete contents for both host and target pointers/descriptors.
56
- // 128 bytes is chosen as the "Small" size to cover common Fortran
+ // 96 bytes is chosen as the "Small" size to cover simple Fortran
57
// descriptors of up to 3 dimensions.
58
- llvm::SmallVector<char, 128> HstPtrContent;
59
- llvm::SmallVector<char, 128> TgtPtrContent;
+ llvm::SmallVector<char, 96> HstPtrContent;
+ llvm::SmallVector<char, 96> TgtPtrContent;
60
61
ShadowPtrInfoTy(void **HstPtrAddr, void **TgtPtrAddr, void *TgtPteeBase,
62
int64_t PtrSize)
0 commit comments