public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Martin Uecker <uecker@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org
Subject: [gcc r14-4689] c: error for function with external and internal linkage [PR111708]
Date: Tue, 17 Oct 2023 18:19:34 +0000 (GMT)	[thread overview]
Message-ID: <20231017181934.0FCC33858C2F@sourceware.org> (raw)

https://gcc.gnu.org/g:1f186f64b8602d74769af4a6250255e51227f744

commit r14-4689-g1f186f64b8602d74769af4a6250255e51227f744
Author: Martin Uecker <uecker@tugraz.at>
Date:   Sat Oct 14 09:09:07 2023 +0200

    c: error for function with external and internal linkage [PR111708]
    
    Declaring a function with both external and internal linkage
    in the same TU is translation-time UB.  Add an error for this
    case as already done for objects.
    
            PR c/111708
    
    gcc/c/ChangeLog:
    
            * c-decl.cc (grokdeclarator): Add error.
    
    gcc/testsuite/ChangeLog:
    
            * gcc.dg/pr111708-1.c: New test.
            * gcc.dg/pr111708-2.c: New test.

Diff:
---
 gcc/c/c-decl.cc                   | 21 ++++++++++++++++++++
 gcc/testsuite/gcc.dg/pr111708-1.c | 42 +++++++++++++++++++++++++++++++++++++++
 gcc/testsuite/gcc.dg/pr111708-2.c | 21 ++++++++++++++++++++
 3 files changed, 84 insertions(+)

diff --git a/gcc/c/c-decl.cc b/gcc/c/c-decl.cc
index 5822faf01b48..0de384783041 100644
--- a/gcc/c/c-decl.cc
+++ b/gcc/c/c-decl.cc
@@ -8032,6 +8032,27 @@ grokdeclarator (const struct c_declarator *declarator,
 		TREE_THIS_VOLATILE (decl) = 1;
 	      }
 	  }
+
+	/* C99 6.2.2p7: It is invalid (compile-time undefined
+	   behavior) to create an 'extern' declaration for a
+	   function if there is a global declaration that is
+	   'static' and the global declaration is not visible.
+	   (If the static declaration _is_ currently visible,
+	   the 'extern' declaration is taken to refer to that decl.) */
+	if (!initialized
+	    && TREE_PUBLIC (decl)
+	    && current_scope != file_scope)
+	  {
+	    tree global_decl  = identifier_global_value (declarator->u.id.id);
+	    tree visible_decl = lookup_name (declarator->u.id.id);
+
+	    if (global_decl
+		&& global_decl != visible_decl
+		&& VAR_OR_FUNCTION_DECL_P (global_decl)
+		&& !TREE_PUBLIC (global_decl))
+	      error_at (loc, "function previously declared %<static%> "
+			"redeclared %<extern%>");
+	  }
       }
     else
       {
diff --git a/gcc/testsuite/gcc.dg/pr111708-1.c b/gcc/testsuite/gcc.dg/pr111708-1.c
new file mode 100644
index 000000000000..4af7f53d75f0
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/pr111708-1.c
@@ -0,0 +1,42 @@
+/* { dg-do compile } */
+/* { dg-options "" } */
+
+extern int a(void);	// external linkage (6.2.2p4)
+static int a(void);	/* { dg-error "static declaration of 'a' follows non-static declaration" } */
+
+static int b(void);	// internal linkage (6.2.2p3)
+extern int b(void);	// internal linkage (6.2.2p4)
+
+static int h0(void);
+
+void s(void)
+{
+	extern int h0(void);	// internal linkage (6.2.2p4),
+	extern int h0(void); 	// internal linkage (6.2.2p4), redeclaration, ok
+	extern int h2(void);	// external linkage (6.2.2p4)
+	extern int h2(void);	// external linkage (6.2.2p4), redeclaration, ok.
+}
+
+
+extern int i(void);	// external linkage (6.2.2p4)
+static int j(void);	// internal linkage (6.2.2p3)
+
+void bar(void)
+{
+	extern int i(void);	// external linkage (6.2.2p4), ok
+}
+
+void foo(void)
+{
+	extern int j(void);	// internal linkage (6.2.2p4), ok, internal
+}
+
+void x(void)
+{
+	int i(void);		// no linkage (6.2.2p6)
+	int j;			// no linkage (6.2.2p6)
+	{
+		extern int j(void);	/* { dg-error "function previously declared 'static' redeclared 'extern'" } */
+	}
+}
+
diff --git a/gcc/testsuite/gcc.dg/pr111708-2.c b/gcc/testsuite/gcc.dg/pr111708-2.c
new file mode 100644
index 000000000000..065c0525c2eb
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/pr111708-2.c
@@ -0,0 +1,21 @@
+/* { dg-do compile } */
+/* { dg-options "" } */
+/* { dg-require-effective-target trampolines } */
+
+static void pp(void)
+{
+	int pp;
+	{
+		auto void pp(void);
+		void pp(void) { }
+	}
+}
+
+static void q2(void);
+
+static void qq(void)
+{
+	auto void q2(void);
+	void q2(void) { }
+}
+

                 reply	other threads:[~2023-10-17 18:19 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=20231017181934.0FCC33858C2F@sourceware.org \
    --to=uecker@gcc.gnu.org \
    --cc=gcc-cvs@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).