aboutsummaryrefslogtreecommitdiff
path: root/libffi
diff options
context:
space:
mode:
authorDavid Edelsohn <edelsohn@gnu.org>2002-01-18 16:22:34 +0000
committerDavid Edelsohn <edelsohn@gnu.org>2002-01-18 16:22:34 +0000
commit18ff09f52a4944aff871ea59714818e7267b899e (patch)
treeda5e42d7684c8bfc4e0bfa3c13145bb50f4dd946 /libffi
parent69d017404e51db0c49add970f0c1c7bcdda0385b (diff)
- Provide a null definition of _ffi_call_AIX so that Darwin link won't fail.
git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@48989 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libffi')
-rw-r--r--libffi/ChangeLog4
-rw-r--r--libffi/src/powerpc/darwin.S14
2 files changed, 14 insertions, 4 deletions
diff --git a/libffi/ChangeLog b/libffi/ChangeLog
index 2d0d4382aa2..1496f5939fc 100644
--- a/libffi/ChangeLog
+++ b/libffi/ChangeLog
@@ -1,3 +1,7 @@
+2002-01-18 David Edelsohn <edelsohn@gnu.org>
+
+ * src/powerpc/darwin.S (_ffi_call_AIX): New.
+
2002-01-17 David Edelsohn <edelsohn@gnu.org>
* Makefile.am (EXTRA_DIST): Add Darwin and AIX files.
diff --git a/libffi/src/powerpc/darwin.S b/libffi/src/powerpc/darwin.S
index f478d40ca9b..9da89bde287 100644
--- a/libffi/src/powerpc/darwin.S
+++ b/libffi/src/powerpc/darwin.S
@@ -3,7 +3,7 @@
PowerPC Assembly glue.
- $Id: darwin.S,v 1.0 2001/01/02 01:49:46 green Exp $
+ $Id: darwin.S,v 1.1 2001/10/09 05:32:15 bryce Exp $
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
@@ -147,7 +147,13 @@ L(float_return_value):
b L(done_return_value)
//END(_ffi_call_DARWIN)
-
-
-
+/* Provide a null definition of _ffi_call_AIX. */
+.text
+ .align 2
+.globl _ffi_call_AIX
+.text
+ .align 2
+_ffi_call_AIX:
+ blr
+//END(_ffi_call_AIX)