diff options
author | Victor Kaplansky <victork@il.ibm.com> | 2007-11-13 13:53:33 +0000 |
---|---|---|
committer | Victor Kaplansky <victork@gcc.gnu.org> | 2007-11-13 13:53:33 +0000 |
commit | c28e913a8b864a85fc60cebea86ee45b9ea4b34a (patch) | |
tree | db0117c6c441e4f6896c2aed34fa4b4e9fe1d854 /gcc | |
parent | b4d9ec93d647023b6570edd3cc3c81fa7216c060 (diff) | |
download | gcc-c28e913a8b864a85fc60cebea86ee45b9ea4b34a.zip gcc-c28e913a8b864a85fc60cebea86ee45b9ea4b34a.tar.gz gcc-c28e913a8b864a85fc60cebea86ee45b9ea4b34a.tar.bz2 |
re PR regression/32582 (Bootstrap with vectorization enabled fails with ICE on PPC)
2007-11-13 Victor Kaplansky <victork@il.ibm.com>
PR tree-optimization/32582
* Makefile.in (CRTSTUFF_CFLAGS): Add -fno-tree-vectorize
From-SVN: r130138
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 320816b..7dfb2ae 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-11-13 Victor Kaplansky <victork@il.ibm.com> + + PR tree-optimization/32582 + * Makefile.in (CRTSTUFF_CFLAGS): Add -fno-tree-vectorize + 2007-11-12 Danny Smith <dannysmith@users.sourceforge.net> * doc/extend.texi (dllimport): Document that pointers to dllimport'd diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 43d7921..4d61401 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -571,7 +571,7 @@ TARGET_LIBGCC2_CFLAGS = # Options to use when compiling crtbegin/end. CRTSTUFF_CFLAGS = -O2 $(GCC_CFLAGS) $(INCLUDES) $(MULTILIB_CFLAGS) -g0 \ -finhibit-size-directive -fno-inline-functions -fno-exceptions \ - -fno-zero-initialized-in-bss -fno-toplevel-reorder \ + -fno-zero-initialized-in-bss -fno-toplevel-reorder -fno-tree-vectorize \ $(INHIBIT_LIBC_CFLAGS) # Additional sources to handle exceptions; overridden by targets as needed. |