Index: src/runtime.cc |
diff --git a/src/runtime.cc b/src/runtime.cc |
index b6c4525bae5e1b3bc86f92c92b199ebd51d55ab5..5de6f9974464c66dd94b5c5384dd99cb706a1f4d 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); |