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

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: re-upload - catch up to 8/19 level 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"
Sven Panne 2014/09/01 07:55:16 Remove this, GCC 4.4 is unsupported.
explicit InductionVariableBlocksTable(HGraph* graph)
: graph_(graph), loop_header_(NULL),
elements_(graph->blocks()->length(), graph->zone()) {
« src/disassembler.cc ('K') | « src/hydrogen.cc ('k') | src/hydrogen-instructions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698