[llvm] r303454 - Added missing break.

Galina Kistanova via llvm-commits llvm-commits at lists.llvm.org
Fri May 19 13:31:51 PDT 2017


Author: gkistanova
Date: Fri May 19 15:31:51 2017
New Revision: 303454

URL: http://llvm.org/viewvc/llvm-project?rev=303454&view=rev
Log:
Added missing break.

Modified:
    llvm/trunk/lib/IR/AutoUpgrade.cpp

Modified: llvm/trunk/lib/IR/AutoUpgrade.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/IR/AutoUpgrade.cpp?rev=303454&r1=303453&r2=303454&view=diff
==============================================================================
--- llvm/trunk/lib/IR/AutoUpgrade.cpp (original)
+++ llvm/trunk/lib/IR/AutoUpgrade.cpp Fri May 19 15:31:51 2017
@@ -521,6 +521,7 @@ static bool UpgradeIntrinsicFunction1(Fu
         return true;
       }
     }
+    break;
   }
   case 'o':
     // We only need to change the name to match the mangling including the




More information about the llvm-commits mailing list