Skip to content

Commit 79215be

Browse files
committed
Fix after rebase
1 parent 0d99a65 commit 79215be

File tree

3 files changed

+2
-9
lines changed

3 files changed

+2
-9
lines changed

llvm/include/llvm/CodeGen/Passes.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -620,8 +620,6 @@ LLVM_ABI FunctionPass *createCallBrPass();
620620

621621
/// Lowers KCFI operand bundles for indirect calls.
622622
LLVM_ABI FunctionPass *createKCFIPass();
623-
624-
LLVM_ABI FunctionPass *createTargetVerifierLegacyPass();
625623
} // namespace llvm
626624

627625
#endif

llvm/include/llvm/IR/Module.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -215,11 +215,6 @@ class LLVM_ABI Module {
215215
/// @name Constructors
216216
/// @{
217217
public:
218-
/// Is this Module using intrinsics to record the position of debugging
219-
/// information, or non-intrinsic records? See IsNewDbgInfoFormat in
220-
/// \ref BasicBlock.
221-
bool IsNewDbgInfoFormat;
222-
223218
/// Used when printing this module in the new debug info format; removes all
224219
/// declarations of debug intrinsics that are replaced by non-intrinsic
225220
/// records in the new format.

llvm/include/llvm/Passes/StandardInstrumentations.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ class VerifyInstrumentation {
478478
public:
479479
VerifyInstrumentation(bool DebugLogging) : DebugLogging(DebugLogging) {}
480480
LLVM_ABI void registerCallbacks(PassInstrumentationCallbacks &PIC,
481-
ModuleAnalysisManager *MAM);
481+
ModuleAnalysisManager *MAM);
482482
};
483483

484484
/// This class implements --time-trace functionality for new pass manager.
@@ -624,7 +624,7 @@ class StandardInstrumentations {
624624
// Register all the standard instrumentation callbacks. If \p FAM is nullptr
625625
// then PreservedCFGChecker is not enabled.
626626
LLVM_ABI void registerCallbacks(PassInstrumentationCallbacks &PIC,
627-
ModuleAnalysisManager *MAM);
627+
ModuleAnalysisManager *MAM = nullptr);
628628

629629
TimePassesHandler &getTimePasses() { return TimePasses; }
630630
};

0 commit comments

Comments
 (0)