public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [committed] Fix NetBSD libgomp bootstrap error.
@ 2008-06-29 21:55 Krister Walfridsson
  0 siblings, 0 replies; only message in thread
From: Krister Walfridsson @ 2008-06-29 21:55 UTC (permalink / raw)
  To: gcc-patches

[-- Attachment #1: Type: TEXT/PLAIN, Size: 672 bytes --]

libgomp breaks bootstrap on NetBSD because of
   cc1: warnings being treated as errors
   ../../../gcc/libgomp/env.c: In function 'parse_stacksize':
   ../../../gcc/libgomp/env.c:207: error: array subscript has type 'char'
   ../../../gcc/libgomp/env.c: In function 'parse_spincount':
   ../../../gcc/libgomp/env.c:276: error: array subscript has type 'char'

I have committed the attached patch under the obvious rule.

Bootstrapped and tested on x86_64-unknown-netbsd4.0 and
i386-unknown-netbsdelf3.1.

    /Krister


2008-06-29  Krister Walfridsson  <krister.walfridsson@gmail.com>

 	* env.c (parse_stacksize): Add cast to avoid warning.
 	(parse_spincount): Likewise.

[-- Attachment #2: Type: TEXT/PLAIN, Size: 604 bytes --]

Index: libgomp/env.c
===================================================================
--- libgomp/env.c	(revision 137259)
+++ libgomp/env.c	(working copy)
@@ -207,7 +207,7 @@ parse_stacksize (const char *name, unsig
     ++end;
   if (*end != '\0')
     {
-      switch (tolower (*end))
+      switch (tolower ((unsigned char) *end))
 	{
 	case 'b':
 	  shift = 0;
@@ -276,7 +276,7 @@ parse_spincount (const char *name, unsig
     ++end;
   if (*end != '\0')
     {
-      switch (tolower (*end))
+      switch (tolower ((unsigned char) *end))
 	{
 	case 'k':
 	  mult = 1000LL;

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-06-29 21:43 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-06-29 21:55 [committed] Fix NetBSD libgomp bootstrap error Krister Walfridsson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).