From: David Edelsohn Date: Fri, 18 Jan 2002 16:22:34 +0000 (+0000) Subject: - Provide a null definition of _ffi_call_AIX so that Darwin link won't fail. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=15b9b32f43a89310ec52155763e54054f42ce315;p=gcc.git - Provide a null definition of _ffi_call_AIX so that Darwin link won't fail. From-SVN: r48989 --- 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 + + * src/powerpc/darwin.S (_ffi_call_AIX): New. + 2002-01-17 David Edelsohn * 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)