Index: src/runtime.cc |
diff --git a/src/runtime.cc b/src/runtime.cc |
index 61e1069d0db35242be66e6f2031c9b098760b064..bd87aee5bcaae37b1ff20731a356d0ae3e5f5b4d 100644 |
--- a/src/runtime.cc |
+++ b/src/runtime.cc |
@@ -1022,6 +1022,8 @@ RUNTIME_FUNCTION(Runtime_TypedArrayInitialize) { |
// initializes backing store using memove. |
// |
// Returns true if backing store was initialized or false otherwise. |
+// Work around for GCC 4.4.6 |
+#pragma GCC diagnostic ignored "-Wuninitialized" |
RUNTIME_FUNCTION(Runtime_TypedArrayInitializeFromArrayLike) { |
HandleScope scope(isolate); |
ASSERT(args.length() == 4); |