On 12/12/2014 09:31 AM, Bastian Koppelmann wrote:
> -#define SSOV(env, ret, arg, len) do { \
> - int64_t max_pos = INT##len ##_MAX; \
> - int64_t max_neg = INT##len ##_MIN; \
> +#define SSOV32(env, ret, arg) do { \
> + int64_t max_pos = INT32_MAX; \
> + int64_t max_neg = INT32_MIN; \Now that you don't need token pasting, I think these would be better as regular functions than macros. r~
