From 1821747f949459281a3f17e468705e15dbc81c81 Mon Sep 17 00:00:00 2001 From: Sean Silva Date: Tue, 14 Jun 2016 00:11:37 +0000 Subject: [PATCH] Try to appease MSVC on clang-x86-win2008-selfhost I've tested this locally with VS2015 and there are no issues there, so this might be a VS2013 specific issue. Thanks to Davide for the suggested fix. llvm-svn: 272601 --- include/llvm/Transforms/Scalar/JumpThreading.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/llvm/Transforms/Scalar/JumpThreading.h b/include/llvm/Transforms/Scalar/JumpThreading.h index 2fb5bb1a839..de6957c1226 100644 --- a/include/llvm/Transforms/Scalar/JumpThreading.h +++ b/include/llvm/Transforms/Scalar/JumpThreading.h @@ -84,6 +84,7 @@ class JumpThreadingPass : public PassInfoMixin { public: JumpThreadingPass(int T = -1); + JumpThreadingPass(const JumpThreadingPass &) = delete; // Glue for old PM. bool runImpl(Function &F, TargetLibraryInfo *TLI_, LazyValueInfo *LVI_,