From fc18e2f23634475d52f02b462485b87fc396ced8 Mon Sep 17 00:00:00 2001 From: Galina Kistanova Date: Fri, 19 May 2017 20:31:51 +0000 Subject: [PATCH] Added missing break. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@303454 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/IR/AutoUpgrade.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/IR/AutoUpgrade.cpp b/lib/IR/AutoUpgrade.cpp index 8bcba767231..06934b365a1 100644 --- a/lib/IR/AutoUpgrade.cpp +++ b/lib/IR/AutoUpgrade.cpp @@ -521,6 +521,7 @@ static bool UpgradeIntrinsicFunction1(Function *F, Function *&NewFn) { return true; } } + break; } case 'o': // We only need to change the name to match the mangling including the -- 2.50.1