[llvm] 61adca7 - [ctxprof] Fix initializer in PGOCtxProfLowering (#131269)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 21:04:31 PDT 2025
Author: Mircea Trofin
Date: 2025-03-13T21:04:27-07:00
New Revision: 61adca7c97089907b2c077f05d19274ae0c29e37
URL: https://github.com/llvm/llvm-project/commit/61adca7c97089907b2c077f05d19274ae0c29e37
DIFF: https://github.com/llvm/llvm-project/commit/61adca7c97089907b2c077f05d19274ae0c29e37.diff
LOG: [ctxprof] Fix initializer in PGOCtxProfLowering (#131269)
It needs to match the structure of `FunctionData` in compiler-rt, but
missed a field in PR #130655.
Added:
Modified:
llvm/lib/Transforms/Instrumentation/PGOCtxProfLowering.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/Instrumentation/PGOCtxProfLowering.cpp b/llvm/lib/Transforms/Instrumentation/PGOCtxProfLowering.cpp
index ffc2aec77ff91..9f2b2d6212a8e 100644
--- a/llvm/lib/Transforms/Instrumentation/PGOCtxProfLowering.cpp
+++ b/llvm/lib/Transforms/Instrumentation/PGOCtxProfLowering.cpp
@@ -124,6 +124,7 @@ CtxInstrumentationLowerer::CtxInstrumentationLowerer(Module &M,
});
FunctionDataTy =
StructType::get(M.getContext(), {
+ PointerTy, /*Next*/
PointerTy, /*FlatCtx*/
SanitizerMutexType, /*Mutex*/
});
More information about the llvm-commits
mailing list