v8: remove unnecessary break-after-return in switch statement

BUG=v8:1642

Review URL: http://codereview.chromium.org/7781007

This is a back-port of upstream r9043. Fixes build on OS X 10.5.
This commit is contained in:
jkummerow@chromium.org 2011-08-29 10:47:00 +00:00 committed by Ben Noordhuis
parent d2defa3012
commit b5643cb2a6

View File

@ -590,7 +590,6 @@ ElementsAccessor* ElementsAccessor::ForArray(FixedArrayBase* array) {
default:
UNREACHABLE();
return NULL;
break;
}
}