diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 95a9a181935f61cac84afc0528ff344059adbf97..434fd98683247455adc9f0c455761bd909aedde7 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,8 @@
+2012-02-06  Jonathan Wakely  <jwakely.gcc@gmail.com>
+
+	PR libstdc++/52128
+	* src/c++11/future.cc: Add explicit instantiation.
+
 2012-02-06  François Dumont  <fdumont@gcc.gnu.org>
 
 	* include/debug/safe_iterator.h
diff --git a/libstdc++-v3/src/c++11/future.cc b/libstdc++-v3/src/c++11/future.cc
index 61a9729a1336146547c123f9bbe89bfd20982f2e..a4881397523f4ba8be607eb73b7eaf6a21fa64e5 100644
--- a/libstdc++-v3/src/c++11/future.cc
+++ b/libstdc++-v3/src/c++11/future.cc
@@ -90,6 +90,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
 
   // Explicit instantiation due to -fno-implicit-instantiation.
   template void call_once(once_flag&, void (thread::*&&)(), reference_wrapper<thread>&&);
+  template _Bind_simple_helper<void (thread::*)(), reference_wrapper<thread>>::__type __bind_simple(void (thread::*&&)(), reference_wrapper<thread>&&);
 #endif
 #endif