]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Removed the configure test for __builtin_frame_address() again because it is no longe...
authorBart Van Assche <bvanassche@acm.org>
Fri, 8 Oct 2010 18:58:44 +0000 (18:58 +0000)
committerBart Van Assche <bvanassche@acm.org>
Fri, 8 Oct 2010 18:58:44 +0000 (18:58 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11417

configure.in

index fd66bdba19185eca7dcd79dfa6fe7ce5d0c6a487..667ca243916a363c44374e2700f6e095c8298a0f 100644 (file)
@@ -1888,29 +1888,6 @@ CFLAGS=$safe_CFLAGS
 AM_CONDITIONAL([HAVE_BUILTIN_ATOMIC], [test x$ac_have_builtin_atomic = xyes])
 
 
-# Check for __builtin_frame_address() support
-AC_MSG_CHECKING([if gcc supports __builtin_frame_address])
-
-AC_TRY_COMPILE(
-[
-], [
-  __builtin_frame_address(0);
-  return 0;
-],
-[
-ac_have_builtin_frame_address=yes
-AC_MSG_RESULT([yes])
-AC_DEFINE([HAVE_BUILTIN_FRAME_ADDRESS], 1,
-          [Define to 1 if your compiler supports __builtin_frame_address.])
-], [
-ac_have_builtin_frame_address=no
-AC_MSG_RESULT([no])
-])
-CFLAGS=$safe_CFLAGS
-
-AM_CONDITIONAL(HAVE_BUILTIN_FRAME_ADDRESS,
-              test x$ac_have_builtin_frame_address = xyes)
-
 #----------------------------------------------------------------------------
 # Ok.  We're done checking.
 #----------------------------------------------------------------------------