- Provide a null definition of _ffi_call_AIX so that Darwin link won't fail.
authorDavid Edelsohn <edelsohn@gnu.org>
Fri, 18 Jan 2002 16:22:34 +0000 (16:22 +0000)
committerDavid Edelsohn <dje@gcc.gnu.org>
Fri, 18 Jan 2002 16:22:34 +0000 (11:22 -0500)
From-SVN: r48989

libffi/ChangeLog
libffi/src/powerpc/darwin.S

index 2d0d4382aa298cd4de4843d3b7cc6b56835c10c5..1496f5939fc6d09c6b93064a30fb53b040969ba2 100644 (file)
@@ -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.
index f478d40ca9b855cf123da805b6976b2dffaebc2b..9da89bde2876610208fe1026edc23026ae47ef5f 100644 (file)
@@ -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)