diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2009-04-08 20:00:01 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2009-04-08 20:00:01 +0000 |
commit | 712789c794c6b0fa3c3ae1867aaa73dc4480b50e (patch) | |
tree | 716d78e508b1fc8e7b0297717f53c3c531deed6e /newlib/configure | |
parent | 01d23ae74923aa9ef95d8452035071e13aa6f5b0 (diff) | |
download | cygnal-712789c794c6b0fa3c3ae1867aaa73dc4480b50e.tar.gz cygnal-712789c794c6b0fa3c3ae1867aaa73dc4480b50e.tar.bz2 cygnal-712789c794c6b0fa3c3ae1867aaa73dc4480b50e.zip |
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')
-rwxr-xr-x | newlib/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/configure b/newlib/configure index b345c10ca..2d0745931 100755 --- a/newlib/configure +++ b/newlib/configure @@ -11908,8 +11908,8 @@ if test "${libc_cv_array_aliasing+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat > conftest.c <<EOF -char x3 = { 'a', 'b', 'c' }; -extern char y2 __attribute__((alias ("x+1"))); +char x[3] = { 'a', 'b', 'c' }; +extern char y[2] __attribute__((alias ("x+1"))); EOF if { ac_try='${CC} $CFLAGS $CPPFLAGS -c conftest.c 1>&5' |