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

Unified Diff: src/hydrogen.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.cc
diff --git a/src/hydrogen.cc b/src/hydrogen.cc
index 619b7e5caa84954e61717ebf2dc79b31d6a289a0..c9e97af111ffcf383be4f1fd1c8f84e4561dd298 100644
--- a/src/hydrogen.cc
+++ b/src/hydrogen.cc
@@ -50,6 +50,8 @@
#include "src/arm64/lithium-codegen-arm64.h" // NOLINT
#elif V8_TARGET_ARCH_ARM
#include "src/arm/lithium-codegen-arm.h" // NOLINT
+#elif V8_TARGET_ARCH_PPC
+#include "src/ppc/lithium-codegen-ppc.h" // NOLINT
#elif V8_TARGET_ARCH_MIPS
#include "src/mips/lithium-codegen-mips.h" // NOLINT
#elif V8_TARGET_ARCH_MIPS64
@@ -7462,6 +7464,9 @@ inline bool operator<(const FunctionSorter& lhs, const FunctionSorter& rhs) {
}
+// Work around for GCC 4.4.6 at -O3 reporting
+// warning: array subscript is above array bounds
+#pragma GCC diagnostic ignored "-Warray-bounds"
void HOptimizedGraphBuilder::HandlePolymorphicCallNamed(
Call* expr,
HValue* receiver,

Powered by Google App Engine
This is Rietveld 408576698