Hi Guys, I am checking in the patch below as an obvious fix for the definition of the QUAD macro in the FRV backend.
Cheers Nick gcc/ChangeLog 2012-07-31 Nick Clifton <ni...@redhat.com> * config/frv/frv.c (QUAD): Fix typo. Index: gcc/config/frv/frv.c =================================================================== --- gcc/config/frv/frv.c (revision 189996) +++ gcc/config/frv/frv.c (working copy) @@ -8435,7 +8435,7 @@ build_function_type_list (RET, T1, T2, T3, NULL_TREE) #define QUAD(RET, T1, T2, T3, T4) \ - build_function_type_list (RET, T1, T2, T3, NULL_TREE) + build_function_type_list (RET, T1, T2, T3, T4, NULL_TREE) tree void_ftype_void = build_function_type_list (voidt, NULL_TREE);