|
Message-ID: <53ee53761956b70258ff634990c478a2@smtp.hushmail.com> Date: Sat, 27 Apr 2013 11:55:18 +0200 From: magnum <john.magnum@...hmail.com> To: john-dev@...ts.openwall.com Subject: Inline macros (was: revised incremental mode and charset files) On 27 Apr, 2013, at 3:00 , Solar Designer <solar@...nwall.com> wrote: > Thank you for testing this! I've just committed some further fixes to > charset.c and inc.c, so can you merge these and re-test? I don't expect > any surprises, but more testing won't hurt. FWIW, this definition: #elif __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1) #define MAYBE_INLINE __attribute__((always_inline)) inline ...has evolved into this in Jumbo, for better compatibility with clang and maybe something else I can't remember: #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 7) #define MAYBE_INLINE __attribute__((always_inline)) inline #elif __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1) #define MAYBE_INLINE __attribute__((always_inline)) magnum
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.