My patch for 109753 applies the current #pragma target/optimize to a
function when we compile it, which was a problem for a template
instantiation deferred until EOF, where different #pragmas are active. So
let's only do this for artificial functions.
PR c++/115403
PR c++/109753
gcc/cp/ChangeLog:
* decl.cc (start_preparsed_function): Only call decl_attributes for
artificial functions.
gcc/testsuite/ChangeLog:
* g++.dg/ext/pragma-target1.C: New test.
doing_friend = true;
}
- /* Adjust for #pragma target/optimize. */
- decl_attributes (&decl1, NULL_TREE, 0);
+ /* Adjust for #pragma target/optimize if this is an artificial function that
+ (probably) didn't go through grokfndecl. We particularly don't want this
+ for deferred instantiations, which should match their template. */
+ if (DECL_ARTIFICIAL (decl1))
+ decl_attributes (&decl1, NULL_TREE, 0);
if (DECL_DECLARED_INLINE_P (decl1)
&& lookup_attribute ("noinline", attrs))
--- /dev/null
+// PR c++/115403
+// { dg-do compile { target x86_64-*-* } }
+
+template <typename> __attribute__((always_inline)) inline void AssertEqual() {}
+void TestAllF16FromF32() { AssertEqual<float>(); }
+#pragma GCC target "sse4.1"