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

Unified Diff: src/hydrogen-bch.cc

Issue 422063005: Contribution of PowerPC port. (Closed) Base URL: http://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
Index: src/hydrogen-bch.cc
diff --git a/src/hydrogen-bch.cc b/src/hydrogen-bch.cc
index 34216c66d32eed7658e8d1ac1be0c75a5f89b6c3..8dee7ac22d342b6e50632d5700b558bff21ac56a 100644
--- a/src/hydrogen-bch.cc
+++ b/src/hydrogen-bch.cc
@@ -174,6 +174,9 @@ class InductionVariableBlocksTable BASE_EMBEDDED {
return unsafe ? OPTIMISTICALLY_HOISTABLE : HOISTABLE;
}
+// Work around for GCC 4.4.6 at -O3 reporting
+// warning: may be used uninitialized in this function
+#pragma GCC diagnostic ignored "-Wuninitialized"
explicit InductionVariableBlocksTable(HGraph* graph)
: graph_(graph), loop_header_(NULL),
elements_(graph->blocks()->length(), graph->zone()) {

Powered by Google App Engine
This is Rietveld 408576698