diff mbox

Commit: FRV: Fix typo in definition of QUAD macro

Message ID 87txwouxa0.fsf@redhat.com
State New
Headers show

Commit Message

Nick Clifton July 31, 2012, 8:53 a.m. UTC
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  <nickc@redhat.com>

	* config/frv/frv.c (QUAD): Fix typo.
diff mbox

Patch

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);