public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r12-8070] Update semantic_interposition flag at analysis time
@ 2022-04-09 19:23 Jan Hubicka
  0 siblings, 0 replies; only message in thread
From: Jan Hubicka @ 2022-04-09 19:23 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:4943b75e9f06f0b64ed541430bb7fbccf55fc552

commit r12-8070-g4943b75e9f06f0b64ed541430bb7fbccf55fc552
Author: Jan Hubicka <jh@suse.cz>
Date:   Sat Apr 9 21:22:58 2022 +0200

    Update semantic_interposition flag at analysis time
    
    This patch solves problem with FE first finalizing function and then adding
    -fno-semantic-interposition flag (by parsing optimization attribute).
    
    gcc/ChangeLog:
    
    2022-04-09  Jan Hubicka  <hubicka@ucw.cz>
    
            PR ipa/103376
            * cgraphunit.cc (cgraph_node::analyze): update semantic_interposition
            flag.
    
    gcc/testsuite/ChangeLog:
    
    2022-04-09  Jan Hubicka  <hubicka@ucw.cz>
    
            PR ipa/103376
            * gcc.c-torture/compile/pr103376.c: New test.

Diff:
---
 gcc/cgraphunit.cc                              | 1 +
 gcc/testsuite/gcc.c-torture/compile/pr103376.c | 9 +++++++++
 2 files changed, 10 insertions(+)

diff --git a/gcc/cgraphunit.cc b/gcc/cgraphunit.cc
index 01f4e28204e..bc3dc754481 100644
--- a/gcc/cgraphunit.cc
+++ b/gcc/cgraphunit.cc
@@ -621,6 +621,7 @@ cgraph_node::analyze (void)
   tree decl = this->decl;
   location_t saved_loc = input_location;
   input_location = DECL_SOURCE_LOCATION (decl);
+  semantic_interposition = opt_for_fn (decl, flag_semantic_interposition);
 
   if (thunk)
     {
diff --git a/gcc/testsuite/gcc.c-torture/compile/pr103376.c b/gcc/testsuite/gcc.c-torture/compile/pr103376.c
new file mode 100644
index 00000000000..8c14c3ded38
--- /dev/null
+++ b/gcc/testsuite/gcc.c-torture/compile/pr103376.c
@@ -0,0 +1,9 @@
+/* { dg-additional-options "-Ofast" } */
+__attribute__ ((optimize ("no-associative-math"))) double
+fn3 (double h, double l)
+{
+  return h + l;
+}
+
+double fn3 (double, double) __attribute__ ((optimize ("O2,no-associative-math")));
+


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

only message in thread, other threads:[~2022-04-09 19:23 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-09 19:23 [gcc r12-8070] Update semantic_interposition flag at analysis time Jan Hubicka

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).