Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2009-04-09 00:00:01 +0400
committerJeff Johnston <jjohnstn@redhat.com>2009-04-09 00:00:01 +0400
commit712789c794c6b0fa3c3ae1867aaa73dc4480b50e (patch)
tree716d78e508b1fc8e7b0297717f53c3c531deed6e /newlib/configure.in
parent01d23ae74923aa9ef95d8452035071e13aa6f5b0 (diff)
2009-04-08 Ken Werner <ken.werner@de.ibm.com>
* configure.in: Add square brackets for the array aliasing conftest. * configure: Regenerate.
Diffstat (limited to 'newlib/configure.in')
-rw-r--r--newlib/configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/configure.in b/newlib/configure.in
index 48cb2526f..8c5749798 100644
--- a/newlib/configure.in
+++ b/newlib/configure.in
@@ -398,8 +398,8 @@ fi
AC_CACHE_CHECK(for array aliasing support,
libc_cv_array_aliasing, [dnl
cat > conftest.c <<EOF
-char x[3] = { 'a', 'b', 'c' };
-extern char y[2] __attribute__((alias ("x+1")));
+char x[[3]] = { 'a', 'b', 'c' };
+extern char y[[2]] __attribute__((alias ("x+1")));
EOF
if AC_TRY_COMMAND([${CC} $CFLAGS $CPPFLAGS -c conftest.c
1>&AS_MESSAGE_LOG_FD])