diff options
Diffstat (limited to 'llvm/unittests/Analysis/FunctionPropertiesAnalysisTest.cpp')
-rw-r--r-- | llvm/unittests/Analysis/FunctionPropertiesAnalysisTest.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/unittests/Analysis/FunctionPropertiesAnalysisTest.cpp b/llvm/unittests/Analysis/FunctionPropertiesAnalysisTest.cpp index 574ad7c..0720d93 100644 --- a/llvm/unittests/Analysis/FunctionPropertiesAnalysisTest.cpp +++ b/llvm/unittests/Analysis/FunctionPropertiesAnalysisTest.cpp @@ -17,6 +17,7 @@ #include "llvm/IR/PassManager.h" #include "llvm/Passes/PassBuilder.h" #include "llvm/Passes/StandardInstrumentations.h" +#include "llvm/Support/Compiler.h" #include "llvm/Support/SourceMgr.h" #include "llvm/Transforms/Utils/Cloning.h" #include "gtest/gtest.h" @@ -25,9 +26,9 @@ using namespace llvm; namespace llvm { -extern cl::opt<bool> EnableDetailedFunctionProperties; -extern cl::opt<bool> BigBasicBlockInstructionThreshold; -extern cl::opt<bool> MediumBasicBlockInstrutionThreshold; +LLVM_ABI extern cl::opt<bool> EnableDetailedFunctionProperties; +LLVM_ABI extern cl::opt<bool> BigBasicBlockInstructionThreshold; +LLVM_ABI extern cl::opt<bool> MediumBasicBlockInstrutionThreshold; } // namespace llvm namespace { |