[llvm-commits] CVS: llvm/lib/Target/X86/X86ISelDAGToDAG.cpp

Evan Cheng evan.cheng at apple.com
Sat May 20 00:44:40 PDT 2006



Changes in directory llvm/lib/Target/X86:

X86ISelDAGToDAG.cpp updated: 1.63 -> 1.64
---
Log message:

Missing break statements.

---
Diffs of the changes:  (+3 -0)

 X86ISelDAGToDAG.cpp |    3 +++
 1 files changed, 3 insertions(+)


Index: llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
diff -u llvm/lib/Target/X86/X86ISelDAGToDAG.cpp:1.63 llvm/lib/Target/X86/X86ISelDAGToDAG.cpp:1.64
--- llvm/lib/Target/X86/X86ISelDAGToDAG.cpp:1.63	Fri May 19 20:40:16 2006
+++ llvm/lib/Target/X86/X86ISelDAGToDAG.cpp	Sat May 20 02:44:28 2006
@@ -832,6 +832,8 @@
 #endif
         return;
       }
+
+      break;
     }
 
     case X86ISD::CALL:
@@ -884,6 +886,7 @@
           return;
         }
       }
+      break;
     }
   }
 






More information about the llvm-commits mailing list