Commit 76c4b6ef authored by yangguo's avatar yangguo Committed by Commit bot

Fix gcc build.

NOTRY=true
TBR=littledan@chromium.org

Review-Url: https://codereview.chromium.org/2171233002
Cr-Commit-Position: refs/heads/master@{#37968}
parent b008a0d5
...@@ -886,7 +886,7 @@ void AstPrinter::VisitTryFinallyStatement(TryFinallyStatement* node) { ...@@ -886,7 +886,7 @@ void AstPrinter::VisitTryFinallyStatement(TryFinallyStatement* node) {
void AstPrinter::PrintTryStatement(TryStatement* node) { void AstPrinter::PrintTryStatement(TryStatement* node) {
PrintIndentedVisit("TRY", node->try_block()); PrintIndentedVisit("TRY", node->try_block());
PrintIndented("CATCH PREDICTION"); PrintIndented("CATCH PREDICTION");
const char* prediction; const char* prediction = "";
switch (node->catch_prediction()) { switch (node->catch_prediction()) {
case HandlerTable::UNCAUGHT: case HandlerTable::UNCAUGHT:
prediction = "UNCAUGHT"; prediction = "UNCAUGHT";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment