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

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: Caught up to bleending edge (8/15) Created 6 years, 4 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 5af6030346a56a588d4a9a24b48fd55b1f1b0ac3..1bc78df2951f4849652743872d6eb9a21f0bb53e 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()) {
« no previous file with comments | « src/hydrogen.cc ('k') | src/hydrogen-instructions.cc » ('j') | src/objects-printer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698