memory_resource still needs init_priority when built with GCC 4.9

llvm-svn: 280585
diff --git a/libcxx/src/experimental/memory_resource.cpp b/libcxx/src/experimental/memory_resource.cpp
index c088059..3e87a2d 100644
--- a/libcxx/src/experimental/memory_resource.cpp
+++ b/libcxx/src/experimental/memory_resource.cpp
@@ -72,10 +72,8 @@
 // Only in C++11 is "init_priority" needed to ensure initialization order.
 #if _LIBCPP_STD_VER > 11
 _LIBCPP_SAFE_STATIC
-#else
- __attribute__((init_priority (101)))
 #endif
-ResourceInitHelper res_init;
+ResourceInitHelper res_init  __attribute__((init_priority (101)));
 
 } // end namespace