diff options
author | Dodji Seketeli <dodji@redhat.com> | 2012-05-24 21:05:49 +0000 |
---|---|---|
committer | Dodji Seketeli <dodji@gcc.gnu.org> | 2012-05-24 23:05:49 +0200 |
commit | 27c53c0cceefe287c5dd8776fc6668d419bfc1b1 (patch) | |
tree | 1ac1549859b8dad0914fca2e1d865aafb33a1f0c | |
parent | 9e65cec2fda780a5204ab4d929432b569f3dc588 (diff) | |
download | gcc-27c53c0cceefe287c5dd8776fc6668d419bfc1b1.zip gcc-27c53c0cceefe287c5dd8776fc6668d419bfc1b1.tar.gz gcc-27c53c0cceefe287c5dd8776fc6668d419bfc1b1.tar.bz2 |
PR bootstrap/53459 - unused local typedef when building on altivec
libcpp/
PR bootstrap/53459
* lex.c (search_line_fast): Remove unused typedef check_count.
From-SVN: r187853
-rw-r--r-- | libcpp/ChangeLog | 5 | ||||
-rw-r--r-- | libcpp/lex.c | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog index 842f834..45ff6ca 100644 --- a/libcpp/ChangeLog +++ b/libcpp/ChangeLog @@ -1,3 +1,8 @@ +2012-05-24 Dodji Seketeli <dodji@redhat.com> + + PR bootstrap/53459 + * lex.c (search_line_fast): Remove unused typedef check_count. + 2012-05-16 Dodji Seketeli <dodji@redhat.com> PR preprocessor/7263 diff --git a/libcpp/lex.c b/libcpp/lex.c index c4dd603..2ebbee9 100644 --- a/libcpp/lex.c +++ b/libcpp/lex.c @@ -590,7 +590,6 @@ search_line_fast (const uchar *s, const uchar *end ATTRIBUTE_UNUSED) { #define N (sizeof(vc) / sizeof(long)) - typedef char check_count[(N == 2 || N == 4) * 2 - 1]; union { vc v; unsigned long l[N]; |