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, |