mirror of git://gcc.gnu.org/git/gcc.git
re PR bootstrap/45381 (Bootstrap failure for powerpc-apple-darwin9: error: AltiVec argument passed to unprototyped function)
PR bootstrap/45381 * lex.c [ALTIVEC] (search_line_fast): Require gcc version 4.5. From-SVN: r171165
This commit is contained in:
parent
ef8623b378
commit
01956319b6
|
@ -1,3 +1,8 @@
|
||||||
|
2011-03-18 Richard Henderson <rth@redhat.com>
|
||||||
|
|
||||||
|
PR bootstrap/45381
|
||||||
|
* lex.c [ALTIVEC] (search_line_fast): Require gcc version 4.5.
|
||||||
|
|
||||||
2011-11-04 Eric Botcazou <ebotcazou@adacore.com>
|
2011-11-04 Eric Botcazou <ebotcazou@adacore.com>
|
||||||
Jakub Jelinek <jakub@redhat.com>
|
Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
|
|
@ -512,7 +512,7 @@ init_vectorized_lexer (void)
|
||||||
search_line_fast = impl;
|
search_line_fast = impl;
|
||||||
}
|
}
|
||||||
|
|
||||||
#elif defined(__GNUC__) && defined(__ALTIVEC__)
|
#elif (GCC_VERSION >= 4005) && defined(__ALTIVEC__)
|
||||||
|
|
||||||
/* A vection of the fast scanner using AltiVec vectorized byte compares. */
|
/* A vection of the fast scanner using AltiVec vectorized byte compares. */
|
||||||
/* ??? Unfortunately, attribute(target("altivec")) is not yet supported,
|
/* ??? Unfortunately, attribute(target("altivec")) is not yet supported,
|
||||||
|
|
Loading…
Reference in New Issue