- Provide a null definition of _ffi_call_AIX so that Darwin link won't fail.

From-SVN: r48989
This commit is contained in:
David Edelsohn 2002-01-18 16:22:34 +00:00 committed by David Edelsohn
parent 3ef42a0c4f
commit 15b9b32f43
2 changed files with 14 additions and 4 deletions

View 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.

View 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)