diff options
author | dodji <dodji@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-05-24 21:05:49 +0000 |
---|---|---|
committer | dodji <dodji@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-05-24 21:05:49 +0000 |
commit | dd605e8a7c49e268c1801e6ecf4214517aa991e4 (patch) | |
tree | 1ac1549859b8dad0914fca2e1d865aafb33a1f0c /libcpp | |
parent | 2e2fa61b8b0d8b6ca2dbbd128d3661ba81c68e2b (diff) | |
download | gcc-dd605e8a7c49e268c1801e6ecf4214517aa991e4.tar.gz |
PR bootstrap/53459 - unused local typedef when building on altivec
libcpp/
PR bootstrap/53459
* lex.c (search_line_fast): Remove unused typedef check_count.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@187853 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libcpp')
-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 842f834aff1..45ff6ca2d89 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 c4dd6035c9b..2ebbee967c2 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]; |