add a missing break that Reid noticed.
authorChris Lattner <sabre@nondot.org>
Sun, 15 Jan 2006 08:40:16 +0000 (08:40 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 15 Jan 2006 08:40:16 +0000 (08:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25328 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Function.cpp

index 3abfef9c2d56431a9e55d724bdb8c5d75af7f843..2f254f9182f81e5d8f95a3039540bccaf4bed540 100644 (file)
@@ -265,6 +265,7 @@ unsigned Function::getIntrinsicID() const {
     if (getName() == "llvm.va_copy")  return Intrinsic::vacopy;
     if (getName() == "llvm.va_end")   return Intrinsic::vaend;
     if (getName() == "llvm.va_start") return Intrinsic::vastart;
+    break;
   case 'w':
     if (getName() == "llvm.writeport") return Intrinsic::writeport;
     if (getName() == "llvm.writeio")   return Intrinsic::writeio;