diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2002-02-05 02:18:55 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@gcc.gnu.org> | 2002-02-05 02:18:55 +0000 |
commit | 3deb275873f7810c2e98fbea6b4f05ddddf846ef (patch) | |
tree | e2fb665c5c722319f0c00bb02bcfbb4e7e9c3eb4 /gcc/config/rs6000/rs6000.c | |
parent | d7799ba140b2f5e05d5b62855f73f99bb7d5911c (diff) | |
download | gcc-3deb275873f7810c2e98fbea6b4f05ddddf846ef.tar.gz |
rs6000.c (altivec_init_builtins): Fix typo building void typed builtins.
2002-02-05 Aldy Hernandez <aldyh@redhat.com>
* config/rs6000/rs6000.c (altivec_init_builtins): Fix typo
building void typed builtins.
* config/rs6000/altivec.h (vec_ld*): Fix typos.
(vec_step): Implement for C++.
From-SVN: r49510
Diffstat (limited to 'gcc/config/rs6000/rs6000.c')
-rw-r--r-- | gcc/config/rs6000/rs6000.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index 7a33dc21820..01439814e65 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -1802,6 +1802,7 @@ rs6000_legitimize_reload_address (x, mode, opnum, type, ind_levels, win) *win = 1; return x; } + #if TARGET_MACHO if (DEFAULT_ABI == ABI_DARWIN && flag_pic && GET_CODE (x) == LO_SUM @@ -4161,15 +4162,11 @@ altivec_init_builtins (void) /* void foo (void). */ tree void_ftype_void - = build_function_type (void_type_node, - tree_cons (NULL_TREE, void_type_node, - endlink)); + = build_function_type (void_type_node, void_list_node); /* vshort foo (void). */ tree v8hi_ftype_void - = build_function_type (V8HI_type_node, - tree_cons (NULL_TREE, void_type_node, - endlink)); + = build_function_type (V8HI_type_node, void_list_node); tree v4si_ftype_v4si_v4si = build_function_type (V4SI_type_node, |