[clang] [flang] [llvm] Add IR Profile-Guided Optimization (IR PGO) support to the Flang compiler (PR #136098)
Tarun Prabhu via cfe-commits
cfe-commits at lists.llvm.org
Thu May 1 08:51:37 PDT 2025
================
@@ -8,8 +8,14 @@
#include "llvm/Frontend/Driver/CodeGenOptions.h"
#include "llvm/Analysis/TargetLibraryInfo.h"
+#include "llvm/ProfileData/InstrProfCorrelator.h"
#include "llvm/TargetParser/Triple.h"
+namespace llvm {
+extern llvm::cl::opt<bool> DebugInfoCorrelate;
+extern llvm::cl::opt<llvm::InstrProfCorrelator::ProfCorrelatorKind>
+ ProfileCorrelate;
+} // namespace llvm
namespace llvm::driver {
----------------
tarunprabhu wrote:
Sorry, but I don't see the correction here.
https://github.com/llvm/llvm-project/pull/136098
More information about the cfe-commits
mailing list