diff options
author | dannysmith <dannysmith@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-10-06 08:21:22 +0000 |
---|---|---|
committer | dannysmith <dannysmith@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-10-06 08:21:22 +0000 |
commit | 5a2b0c3481bac6b4b996c947de053d033c25d3de (patch) | |
tree | 59696f984898b364d581f6a67d3729c9946c74a5 /libgfortran/acinclude.m4 | |
parent | 3be2994eca77013f3ab325a1265e8536cdb9fc6f (diff) | |
download | gcc-5a2b0c3481bac6b4b996c947de053d033c25d3de.tar.gz |
* acinclude.m4 (HAVE_ATTRIBUTE_ALIAS): Remove __USER_LABEL_PREFIX__ from test.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@117488 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/acinclude.m4')
-rw-r--r-- | libgfortran/acinclude.m4 | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libgfortran/acinclude.m4 b/libgfortran/acinclude.m4 index 3fe4e73a4f6..73d67e18784 100644 --- a/libgfortran/acinclude.m4 +++ b/libgfortran/acinclude.m4 @@ -141,11 +141,8 @@ AC_DEFUN([LIBGFOR_CHECK_ATTRIBUTE_ALIAS], [ AC_CACHE_CHECK([whether the target supports symbol aliases], have_attribute_alias, [ AC_TRY_LINK([ -#define ULP STR1(__USER_LABEL_PREFIX__) -#define STR1(x) STR2(x) -#define STR2(x) #x void foo(void) { } -extern void bar(void) __attribute__((alias(ULP "foo")));], +extern void bar(void) __attribute__((alias("foo")));], [bar();], have_attribute_alias=yes, have_attribute_alias=no)]) if test $have_attribute_alias = yes; then AC_DEFINE(HAVE_ATTRIBUTE_ALIAS, 1, |