[WinEH] Add cleanupendpad instruction
[oota-llvm.git] / lib / Transforms / Instrumentation / MemorySanitizer.cpp
index eb2a5b3653c6bfef6e53171f36d9513971a440ff..be8e25505ca76ff09f74b54323416bbe768507e3 100644 (file)
@@ -2698,6 +2698,11 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> {
     // Nothing to do here.
   }
 
+  void visitCleanupEndPadInst(CleanupEndPadInst &I) {
+    DEBUG(dbgs() << "CleanupEndPad: " << I << "\n");
+    // Nothing to do here.
+  }
+
   void visitGetElementPtrInst(GetElementPtrInst &I) {
     handleShadowOr(I);
   }