Skip to content

Commit

Permalink
Update libffi to latest changes on master
Browse files Browse the repository at this point in the history
  • Loading branch information
larskanis committed Jun 1, 2018
1 parent 09e0c60 commit fbb6f04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/ffi_c/libffi
Submodule libffi updated 64 files
+6 −4 .appveyor.yml
+10 −0 .github/issue_template.md
+2 −0 .gitignore
+20 −16 .travis.yml
+270 −0 .travis/ar-lib
+34 −0 .travis/build.sh
+351 −0 .travis/compile
+11 −3 .travis/install.sh
+60 −0 .travis/moxie-sim.exp
+18 −0 .travis/site.exp
+352 −0 LICENSE-BUILDTOOLS
+4 −45 Makefile.am
+237 −230 README.md
+10 −8 configure.ac
+5 −0 configure.host
+4 −4 doc/version.texi
+48 −26 include/ffi.h.in
+2 −0 include/ffi_common.h
+18 −16 m4/ax_append_flag.m4
+21 −8 m4/ax_cc_maxopt.m4
+4 −4 m4/ax_cflags_warn_all.m4
+9 −7 m4/ax_check_compile_flag.m4
+8 −5 m4/ax_compiler_vendor.m4
+5 −5 m4/ax_configure_args.m4
+7 −6 m4/ax_enable_builddir.m4
+99 −61 m4/ax_gcc_archflag.m4
+18 −8 m4/ax_gcc_x86_cpuid.m4
+37 −0 m4/ax_require_defined.m4
+82 −14 msvcc.sh
+8 −31 src/aarch64/ffi.c
+31 −1 src/closures.c
+24 −6 src/ia64/ffi.c
+2 −1 src/ia64/ffitarget.h
+6 −1 src/ia64/unix.S
+29 −12 src/mips/ffi.c
+7 −12 src/mips/ffitarget.h
+1 −1 src/moxie/eabi.S
+18 −5 src/moxie/ffi.c
+45 −16 src/powerpc/ffi_linux64.c
+445 −0 src/riscv/ffi.c
+68 −0 src/riscv/ffitarget.h
+214 −0 src/riscv/sysv.S
+3 −1 src/types.c
+18 −0 src/x86/ffi.c
+15 −9 src/x86/ffi64.c
+8 −2 src/x86/ffitarget.h
+30 −9 src/x86/ffiw64.c
+6 −1 src/xtensa/sysv.S
+108 −77 testsuite/Makefile.am
+195 −5 testsuite/lib/libffi.exp
+28 −0 testsuite/libffi.bhaible/Makefile
+78 −0 testsuite/libffi.bhaible/README
+50 −0 testsuite/libffi.bhaible/alignof.h
+58 −0 testsuite/libffi.bhaible/bhaible.exp
+1,745 −0 testsuite/libffi.bhaible/test-call.c
+2,885 −0 testsuite/libffi.bhaible/test-callback.c
+743 −0 testsuite/libffi.bhaible/testcases.c
+46 −0 testsuite/libffi.call/align_stdcall.c
+14 −1 testsuite/libffi.call/call.exp
+3 −1 testsuite/libffi.call/ffitest.h
+1 −0 testsuite/libffi.call/nested_struct10.c
+57 −0 testsuite/libffi.call/struct10.c
+1 −1 testsuite/libffi.call/unwindtest.cc
+1 −1 testsuite/libffi.call/unwindtest_ffi_call.cc

0 comments on commit fbb6f04

Please sign in to comment.