Index: src/hydrogen.cc |
diff --git a/src/hydrogen.cc b/src/hydrogen.cc |
index 3ddd7cce83d1fb7464cf2c476324731ae0dff23f..551c5e5583a490697527575e654dbd1bc3285763 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 |
@@ -7460,6 +7462,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, |