Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(329)

Unified Diff: test/cctest/compiler/test-graph-reducer.cc

Issue 438523003: Greenify NaCl build (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/compiler/test-graph-reducer.cc
diff --git a/test/cctest/compiler/test-graph-reducer.cc b/test/cctest/compiler/test-graph-reducer.cc
index 97aebafcf1a44f3c0878bcbfc28d84dc4346140b..189b3db18e7c65e0f90dbe730b940bd901ea3479 100644
--- a/test/cctest/compiler/test-graph-reducer.cc
+++ b/test/cctest/compiler/test-graph-reducer.cc
@@ -490,7 +490,7 @@ TEST(Sorter1) {
Node* n1 = graph.NewNode(&OPA0);
Node* n2 = graph.NewNode(&OPA1, n1);
Node* n3 = graph.NewNode(&OPA1, n1);
- Node* end;
+ Node* end = NULL; // Initialize to please the compiler.
if (i == 0) end = graph.NewNode(&OPA2, n2, n3);
if (i == 1) end = graph.NewNode(&OPA2, n3, n2);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698