From 77d8b4b9d05aa7b0c33ddef7da4532b7e396c143 Mon Sep 17 00:00:00 2001 From: "jkummerow@chromium.org" Date: Fri, 17 Oct 2014 15:50:05 +0000 Subject: [PATCH] Fix compilation with GCC-4.8 after r24685 TBR=bmeurer@chromium.org Review URL: https://codereview.chromium.org/661123002 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@24701 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/compiler/node-matchers.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler/node-matchers.h b/src/compiler/node-matchers.h index 3e64ddd..4cc4ff7 100644 --- a/src/compiler/node-matchers.h +++ b/src/compiler/node-matchers.h @@ -115,6 +115,7 @@ struct NumericValueMatcher : public NodeMatcher { break; default: has_value_ = false; + value_ = 0; // Make the compiler happy. break; } } -- 2.7.4