From 36e8d515e580eed5c6f3ec06bd3acb565a8d32e6 Mon Sep 17 00:00:00 2001 From: Mark Mitchell Date: Fri, 9 May 2003 19:32:30 +0000 Subject: [PATCH] rs6000.c (spe_init_builtins): Fix typo in creation of int_ftype_void. * config/rs6000/rs6000.c (spe_init_builtins): Fix typo in creation of int_ftype_void. From-SVN: r66642 --- gcc/ChangeLog | 5 +++++ gcc/config/rs6000/rs6000.c | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 52c64859dbd4..8683cd0890d9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-05-09 Mark Mitchell + + * config/rs6000/rs6000.c (spe_init_builtins): Fix typo in creation + of int_ftype_void. + 2003-05-09 Olivier Hainque * config/arm/vxxscale.h, config/arm/vxxscale-coff.h: New files. diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index c5cfa14b6963..38633d19d4bf 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -5761,8 +5761,7 @@ spe_init_builtins () tree_cons (NULL_TREE, integer_type_node, endlink)); tree int_ftype_void - = build_function_type (integer_type_node, - tree_cons (NULL_TREE, void_type_node, endlink)); + = build_function_type (integer_type_node, endlink); tree v2si_ftype_pv2si_int = build_function_type (opaque_V2SI_type_node, -- 2.43.5