Missing break statements.

llvm-svn: 28418
This commit is contained in:
Evan Cheng 2006-05-20 07:44:28 +00:00
parent b9ac06bb33
commit a26c451fa2
1 changed files with 3 additions and 0 deletions

View File

@ -832,6 +832,8 @@ void X86DAGToDAGISel::Select(SDOperand &Result, SDOperand N) {
#endif
return;
}
break;
}
case X86ISD::CALL:
@ -884,6 +886,7 @@ void X86DAGToDAGISel::Select(SDOperand &Result, SDOperand N) {
return;
}
}
break;
}
}