On 04/19/2011 09:14 AM, Richard Sandiford wrote:
Tested on x86_64-linux-gnu and arm-linux-gnueabi. OK to install?
OK with me. Thanks for your patience. Just a couple of minor nits below
+ extern const int internal_fn_flags_array[]; + return internal_fn_flags_array[(int) fn]; +} + +extern void expand_internal_call (gimple stmt);
s/stmt//
static inline tree gimple_call_addr_fndecl (const_tree fn) { - if (TREE_CODE (fn) == ADDR_EXPR) + if (fn&& TREE_CODE (fn) == ADDR_EXPR)
Can't tell if thunderbird is being silly about spaces again or you are missing a space before '&&'. I see it in a couple other places below, so I think it's just TB.
Diego.