[llvm-commits] [llvm] r79404 - /llvm/trunk/lib/Analysis/ProfileInfo.cpp

Andreas Neustifter astifter at gmx.at
Tue Aug 18 22:44:40 PDT 2009


Author: astifter
Date: Wed Aug 19 00:44:39 2009
New Revision: 79404

URL: http://llvm.org/viewvc/llvm-project?rev=79404&view=rev
Log:
Broke line before break.

Modified:
    llvm/trunk/lib/Analysis/ProfileInfo.cpp

Modified: llvm/trunk/lib/Analysis/ProfileInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/ProfileInfo.cpp?rev=79404&r1=79403&r2=79404&view=diff

==============================================================================
--- llvm/trunk/lib/Analysis/ProfileInfo.cpp (original)
+++ llvm/trunk/lib/Analysis/ProfileInfo.cpp Wed Aug 19 00:44:39 2009
@@ -54,7 +54,8 @@
     if (ProcessedPreds.insert(*PI).second) {
       double w = getEdgeWeight(getEdge(*PI, BB));
       if (w == MissingValue) {
-        Count = MissingValue; break;
+        Count = MissingValue;
+        break;
       }
       Count += w;
     }





More information about the llvm-commits mailing list