From 2dfa3eb56679fcb0ac36d2956924e59acf4fc19e Mon Sep 17 00:00:00 2001 From: Evgeniy Stepanov Date: Mon, 17 Dec 2012 16:30:05 +0000 Subject: [PATCH] [msan] Fix lint warning. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170347 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Instrumentation/MemorySanitizer.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Transforms/Instrumentation/MemorySanitizer.cpp b/lib/Transforms/Instrumentation/MemorySanitizer.cpp index 1cc949da567..59902269a02 100644 --- a/lib/Transforms/Instrumentation/MemorySanitizer.cpp +++ b/lib/Transforms/Instrumentation/MemorySanitizer.cpp @@ -1226,7 +1226,8 @@ struct MemorySanitizerVisitor : public InstVisitor { handleBswap(I); break; default: - visitInstruction(I); break; + visitInstruction(I); + break; } }