Reviewers: William Hesse, Description: Add a pair of missing breaks to a switch statement.
Please review this at http://codereview.chromium.org/267050 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/ia32/codegen-ia32.cc Index: src/ia32/codegen-ia32.cc =================================================================== --- src/ia32/codegen-ia32.cc (revision 3048) +++ src/ia32/codegen-ia32.cc (working copy) @@ -3005,6 +3005,7 @@ loop.Jump(); } } + break; case DONT_KNOW: if (test_at_bottom) { if (node->continue_target()->is_linked()) { @@ -3031,6 +3032,7 @@ } } } + break; case ALWAYS_FALSE: UNREACHABLE(); break; --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
