diff options
Diffstat (limited to 'gcc')
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/builtins.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8bdd0dd..506c1e7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2006-04-18 Andreas Krebbel <krebbel1@de.ibm.com> + + * builtins.c (expand_builtin_strcmp): Cover label definition of + do_libcall with HAVE_cmpstrnsi. + 2006-04-18 Kazu Hirata <kazu@codesourcery.com> * function.c (temp_slots_at_level, max_slot_level): Use VEC diff --git a/gcc/builtins.c b/gcc/builtins.c index 836f965..5747de4 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -3772,7 +3772,9 @@ expand_builtin_strcmp (tree exp, rtx target, enum machine_mode mode) /* Expand the library call ourselves using a stabilized argument list to avoid re-evaluating the function's arguments twice. */ +#ifdef HAVE_cmpstrnsi do_libcall: +#endif arglist = build_tree_list (NULL_TREE, arg2); arglist = tree_cons (NULL_TREE, arg1, arglist); fndecl = get_callee_fndecl (exp); |
