diff options
author | Andrew Rogers <andrurogerz@gmail.com> | 2025-06-25 12:18:07 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-25 12:18:07 -0700 |
commit | 1abe1aa7b2b4a35f8f8497a8a051cfba7d311131 (patch) | |
tree | 8b87a6f0778a8a853a0d4cb52857a7a936d363b4 /llvm/unittests/Analysis | |
parent | d9a7b1647984dd6f7059069fcffe23dc1d1438b1 (diff) | |
download | llvm-1abe1aa7b2b4a35f8f8497a8a051cfba7d311131.zip llvm-1abe1aa7b2b4a35f8f8497a8a051cfba7d311131.tar.gz llvm-1abe1aa7b2b4a35f8f8497a8a051cfba7d311131.tar.bz2 |
[llvm] annotate remaining Analysis library interfaces for DLL export (#145359)
Diffstat (limited to 'llvm/unittests/Analysis')
-rw-r--r-- | llvm/unittests/Analysis/MemoryProfileInfoTest.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/unittests/Analysis/MemoryProfileInfoTest.cpp b/llvm/unittests/Analysis/MemoryProfileInfoTest.cpp index 6eef0b5..aa4d712 100644 --- a/llvm/unittests/Analysis/MemoryProfileInfoTest.cpp +++ b/llvm/unittests/Analysis/MemoryProfileInfoTest.cpp @@ -14,6 +14,7 @@ #include "llvm/IR/Module.h" #include "llvm/IR/ModuleSummaryIndex.h" #include "llvm/Support/CommandLine.h" +#include "llvm/Support/Compiler.h" #include "llvm/Support/SourceMgr.h" #include "gmock/gmock.h" #include "gtest/gtest.h" @@ -23,7 +24,7 @@ using namespace llvm; using namespace llvm::memprof; -extern cl::opt<bool> MemProfKeepAllNotColdContexts; +LLVM_ABI extern cl::opt<bool> MemProfKeepAllNotColdContexts; namespace { |