Merge pull request #211 from tromey/move-prep-types-out-of-ffi.h

ffi_prep_types is internal-only
This commit is contained in:
Anthony Green
2016-02-20 06:41:10 -05:00
2 changed files with 5 additions and 5 deletions

View File

@@ -229,11 +229,6 @@ typedef struct {
#endif
} ffi_cif;
#if @HAVE_LONG_DOUBLE_VARIANT@
/* Used to adjust size/alignment of ffi types. */
void ffi_prep_types (ffi_abi abi);
#endif
/* Used internally, but overridden by some architectures */
ffi_status ffi_prep_cif_core(ffi_cif *cif,
ffi_abi abi,

View File

@@ -82,6 +82,11 @@ ffi_status ffi_prep_cif_machdep(ffi_cif *cif);
ffi_status ffi_prep_cif_machdep_var(ffi_cif *cif,
unsigned int nfixedargs, unsigned int ntotalargs);
#if HAVE_LONG_DOUBLE_VARIANT
/* Used to adjust size/alignment of ffi types. */
void ffi_prep_types (ffi_abi abi);
#endif
/* Extended cif, used in callback from assembly routine */
typedef struct
{