diff options
author | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-04-29 04:14:44 +0000 |
---|---|---|
committer | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-04-29 04:14:44 +0000 |
commit | ea1f83c547ade869a8ac885d061426c4b0e77fb0 (patch) | |
tree | f39e5328a9363e97902877aab9e253339d93ad1c /libffi/include | |
parent | 6f0ae5446034ae364d9599e051a1f81ae9b61e1f (diff) | |
download | gcc-ea1f83c547ade869a8ac885d061426c4b0e77fb0.tar.gz |
2002-04-29 Gerhard Tonn <GerhardTonn@swol.de>
* Makefile.am: Add Linux for S/390 support.
* Makefile.in: Regenerate.
* configure.in: Add Linux for S/390 support.
* configure: Regenerate.
* include/ffi.h.in: Add Linux for S/390 support.
* src/s390/ffi.c: New file from libffi CVS tree.
* src/s390/sysv.S: New file from libffi CVS tree.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@52873 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libffi/include')
-rw-r--r-- | libffi/include/Makefile.in | 2 | ||||
-rw-r--r-- | libffi/include/ffi.h.in | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/libffi/include/Makefile.in b/libffi/include/Makefile.in index 4f75451d5f7..13aa274f405 100644 --- a/libffi/include/Makefile.in +++ b/libffi/include/Makefile.in @@ -99,7 +99,7 @@ DIST_COMMON = Makefile.am Makefile.in ffi.h.in DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) -TAR = gnutar +TAR = gtar GZIP_ENV = --best all: all-redirect .SUFFIXES: diff --git a/libffi/include/ffi.h.in b/libffi/include/ffi.h.in index 8097917fe10..90dfa5189b9 100644 --- a/libffi/include/ffi.h.in +++ b/libffi/include/ffi.h.in @@ -251,6 +251,12 @@ typedef enum ffi_abi { FFI_DEFAULT_ABI = FFI_SYSV, #endif + /* ---- S390 --------------------- */ +#ifdef S390 + FFI_SYSV, + FFI_DEFAULT_ABI = FFI_SYSV, +#endif + /* Leave this for debugging purposes */ FFI_LAST_ABI |