diff options
Diffstat (limited to 'llvm/lib/MC/MCContext.cpp')
-rw-r--r-- | llvm/lib/MC/MCContext.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/MC/MCContext.cpp b/llvm/lib/MC/MCContext.cpp index 69c10f535e5..ac9259a4d24 100644 --- a/llvm/lib/MC/MCContext.cpp +++ b/llvm/lib/MC/MCContext.cpp @@ -570,6 +570,11 @@ CodeViewContext &MCContext::getCVContext() { return *CVContext.get(); } +void MCContext::clearCVLocSeen() { + if (CVContext) + CVContext->clearCVLocSeen(); +} + //===----------------------------------------------------------------------===// // Error Reporting //===----------------------------------------------------------------------===// |