]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix linux kernel miscompilation.
authorJames E Wilson <wilson@specifixinc.com>
Wed, 15 Sep 2004 23:26:33 +0000 (23:26 +0000)
committerJim Wilson <wilson@gcc.gnu.org>
Wed, 15 Sep 2004 23:26:33 +0000 (16:26 -0700)
PR target/17455
* config/ia64/ia64.c (ia64_function_ok_for_sibcall): Return false
if current_function_decl is a sibcall.

From-SVN: r87574

gcc/ChangeLog
gcc/config/ia64/ia64.c

index d9620165672c51f22c961255e4feae932bbdcc34..39238769771c6bef5f325ed45301d901390734aa 100644 (file)
@@ -1,3 +1,9 @@
+2004-09-15  James E Wilson  <wilson@specifixinc.com>
+
+       PR target/17455
+       * config/ia64/ia64.c (ia64_function_ok_for_sibcall): Return false
+       if current_function_decl is a sibcall.
+
 2004-09-15  Mark Mitchell  <mark@codesourcery.com>
 
        * varasm.c (default_function_rdodata_section): Make sure to pass
index b85e1c2be117865c98c894759a12afdbaa3af950..871c52de5021b4becd3559318de96f5cb88ec2dc 100644 (file)
@@ -3367,6 +3367,12 @@ ia64_pass_by_reference (CUMULATIVE_ARGS *cum ATTRIBUTE_UNUSED,
 static bool
 ia64_function_ok_for_sibcall (tree decl, tree exp ATTRIBUTE_UNUSED)
 {
+  /* We can't perform a sibcall if the current function has the syscall_linkage
+     attribute.  */
+  if (lookup_attribute ("syscall_linkage",
+                       TYPE_ATTRIBUTES (TREE_TYPE (current_function_decl))))
+    return false;
+
   /* We must always return with our current GP.  This means we can
      only sibcall to functions defined in the current module.  */
   return decl && (*targetm.binds_local_p) (decl);