aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/CodeGen
diff options
context:
space:
mode:
authorJulian Brown <julian.brown@amd.com>2025-07-24 15:43:58 +0100
committerGitHub <noreply@github.com>2025-07-24 15:43:58 +0100
commit628cfe0e0a491a61ab8e85c371eb73e67d693712 (patch)
treed36c1251a4dd5acbcdfbb1c772a2e07ce55cd184 /clang/lib/CodeGen
parent74505806b6446d1868c1e07cbaebfaa29291beb5 (diff)
downloadllvm-628cfe0e0a491a61ab8e85c371eb73e67d693712.zip
llvm-628cfe0e0a491a61ab8e85c371eb73e67d693712.tar.gz
llvm-628cfe0e0a491a61ab8e85c371eb73e67d693712.tar.bz2
[OpenMP] Fix initialization order for CopyOverlappedEntryGaps (#150431)
NFC.
Diffstat (limited to 'clang/lib/CodeGen')
-rw-r--r--clang/lib/CodeGen/CGOpenMPRuntime.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGOpenMPRuntime.cpp b/clang/lib/CodeGen/CGOpenMPRuntime.cpp
index f1698a0..91237cf 100644
--- a/clang/lib/CodeGen/CGOpenMPRuntime.cpp
+++ b/clang/lib/CodeGen/CGOpenMPRuntime.cpp
@@ -7108,8 +7108,8 @@ private:
Address BP, Address LB, bool IsNonContiguous,
uint64_t DimSize)
: CGF(CGF), CombinedInfo(CombinedInfo), Flags(Flags), MapDecl(MapDecl),
- MapExpr(MapExpr), BP(BP), LB(LB), IsNonContiguous(IsNonContiguous),
- DimSize(DimSize) {}
+ MapExpr(MapExpr), BP(BP), IsNonContiguous(IsNonContiguous),
+ DimSize(DimSize), LB(LB) {}
void processField(
const OMPClauseMappableExprCommon::MappableComponent &MC,