]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fixes PR 57548.
authortmsriram <tmsriram@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 8 Jun 2013 00:38:09 +0000 (00:38 +0000)
committertmsriram <tmsriram@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 8 Jun 2013 00:38:09 +0000 (00:38 +0000)
2013-06-07  Sriraman Tallam  <tmsriram@google.com>

PR c++/57548
* cp/call.c (build_over_call):  Check if current_function_decl is
NULL.
* testsuite/g++.dg/ext/pr57548.C: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@199842 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/cp/call.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/ext/pr57548.C [new file with mode: 0644]

index 4a149b827c4c9130cd64941ffd6b8ecdbb7926a5..31d487a2ccb578d94205227d11221ad0ec9df960 100644 (file)
@@ -1,3 +1,9 @@
+2013-06-07  Sriraman Tallam  <tmsriram@google.com>
+
+       PR c++/57548
+       * cp/call.c (build_over_call):  Check if current_function_decl is
+       NULL.
+
 2013-06-07  Jan Hubicka  <jh@suse.cz>
 
        * symtab.c (symtab_resolve_alias): Do not remove alias attribute.
index 0b6a83f344549468468bf7e0ced6006b5205adc6..dfd061aff5c9fd61e219019e38857b13c8479b55 100644 (file)
@@ -7053,7 +7053,8 @@ build_over_call (struct z_candidate *cand, int flags, tsubst_flags_t complain)
      otherwise the call should go through the dispatcher.  */
 
   if (DECL_FUNCTION_VERSIONED (fn)
-      && !targetm.target_option.can_inline_p (current_function_decl, fn))
+      && (current_function_decl == NULL
+         || !targetm.target_option.can_inline_p (current_function_decl, fn)))
     {
       fn = get_function_version_dispatcher (fn);
       if (fn == NULL)
index 55a3ce6d1acb109a9ba9ff53a8bb3a0dd8268b9d..65c0770797decaa881884caddf6169abb6da9eb9 100644 (file)
@@ -1,3 +1,8 @@
+2013-06-07  Sriraman Tallam  <tmsriram@google.com>
+
+       PR c++/57548
+       * testsuite/g++.dg/ext/pr57548.C: New test.
+
 2013-06-07  Balaji V. Iyer  <balaji.v.iyer@intel.com>
 
        PR middle-end/57541
diff --git a/gcc/testsuite/g++.dg/ext/pr57548.C b/gcc/testsuite/g++.dg/ext/pr57548.C
new file mode 100644 (file)
index 0000000..1cc728d
--- /dev/null
@@ -0,0 +1,25 @@
+/* { dg-do compile { target i?86-*-* x86_64-*-* } } */
+/* { dg-require-ifunc "" }  */
+
+int fum (); // Extra declaration that is merged with the second one.
+int fum () __attribute__ ((target("default")));
+
+
+int fum () __attribute__((target( "mmx")));
+int fum () __attribute__((target( "popcnt")));
+int fum () __attribute__((target( "sse")));
+int fum () __attribute__((target( "sse2")));
+int fum () __attribute__((target( "sse3")));
+int fum () __attribute__((target( "ssse3")));
+int fum () __attribute__((target( "sse4.1")));
+int fum () __attribute__((target( "sse4.2")));
+int fum () __attribute__((target( "avx")));
+int fum () __attribute__((target( "avx2")));
+
+int fum () __attribute__((target("arch=core2")));
+int fum () __attribute__((target("arch=corei7")));
+int fum () __attribute__((target("arch=atom")));
+
+int (*p)() = &fum;
+
+int j = fum();