Fix a regression introduced in r116430 with the added 'break' statement,

which broke test/breakpoint_locations.

Add a comment about intentional fall-through in the case statement.

llvm-svn: 116463
This commit is contained in:
Johnny Chen 2010-10-14 00:54:32 +00:00
parent b9681ad442
commit 3c230654a7
1 changed files with 1 additions and 1 deletions

View File

@ -1439,7 +1439,7 @@ Process::ShouldBroadcastEvent (Event *event_ptr)
{
case eVoteYes:
Process::ProcessEventData::SetRestartedInEvent (event_ptr, true);
break;
// Intentional fall-through here.
case eVoteNoOpinion:
case eVoteNo:
return_value = false;