public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
From: Andrea Monaco <andrea.monaco@autistici.org>
To: gcc@gcc.gnu.org
Subject: No type checking in ctype builtins
Date: Wed, 27 Apr 2022 17:29:03 +0200	[thread overview]
Message-ID: <87sfpy1r5s.fsf@autistici.org> (raw)


This program

  #include <ctype.h>

  int main ()
  {
    char *s;
    isspace (s);
  }

compiles with no warning in gcc 8.3.0, even though there's a type
mistake; the correct call would be isspace (*s).

The ctype functions are implemented as macros in glibc, so you can't
have type checking.  But they are also provided as builtins by gcc, so I
wonder why type checking is not performed in that case, either.



Thanks,

Andrea Monaco

             reply	other threads:[~2022-04-27 15:29 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-27 15:29 Andrea Monaco [this message]
2022-04-27 15:54 ` Andreas Schwab
2022-04-27 18:07   ` Andrea Monaco
2022-04-28 11:13   ` Florian Weimer
2022-04-27 16:19 ` Jonathan Wakely
2022-04-28 12:02   ` Eric Gallager

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87sfpy1r5s.fsf@autistici.org \
    --to=andrea.monaco@autistici.org \
    --cc=gcc@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).