Index: src/runtime.cc |
diff --git a/src/runtime.cc b/src/runtime.cc |
index 97a52710a5c82cf8a0931ef612d3befb141088e3..4dd596284a61de7a7788eb167e219cdb46cd912c 100644 |
--- a/src/runtime.cc |
+++ b/src/runtime.cc |
@@ -1035,6 +1035,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); |
DCHECK(args.length() == 4); |