prep_cif.c: Remove unnecessary ifdef for X86_WIN32
authorJosh Triplett <josh@joshtriplett.org>
Sun, 16 Mar 2014 08:50:02 +0000 (01:50 -0700)
committerJosh Triplett <josh@joshtriplett.org>
Sun, 16 Mar 2014 11:56:57 +0000 (04:56 -0700)
commit9531d05f64c2a674e0197158ffad68d69f177bd0
treef232d34473348b17bba603051939cb26420a3f7a
parent98b52960485a261399f081915f36063de3854a5f
prep_cif.c: Remove unnecessary ifdef for X86_WIN32

ffi_prep_cif_core had a special case for X86_WIN32, checking for
FFI_THISCALL in addition to the FFI_FIRST_ABI-to-FFI_LAST_ABI range
before returning FFI_BAD_ABI.  However, on X86_WIN32, FFI_THISCALL
already falls in that range, making the special case unnecessary.
Remove it.
ChangeLog
src/prep_cif.c