From: uros Date: Wed, 26 Nov 2008 12:32:43 +0000 (+0000) Subject: * config/soft-fp/floatuntisf.c (__floatuntisf): Correct X-Git-Tag: upstream/4.9.2~38717 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9b9e4d1b8a2ee4d8bc0afba331b29c5ec9862e96;p=platform%2Fupstream%2Flinaro-gcc.git * config/soft-fp/floatuntisf.c (__floatuntisf): Correct function name from __floatundisf. * config/soft-fp/fixdfti.c (__fixdfti): Correct argument type to DFtype. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@142218 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1d76afd..9238560 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,12 @@ +2008-11-26 Fredrik Unger + + * config/soft-fp/floatuntisf.c (__floatuntisf): Correct + function name from __floatundisf. + * config/soft-fp/fixdfti.c (__fixdfti): Correct argument type to + DFtype. + 2008-11-25 Daniel Berlin - Richard Guenther + Richard Guenther PR tree-optimization/37869 * tree-ssa-structalias.c (struct constraint_graph): Remove diff --git a/gcc/config/soft-fp/fixdfti.c b/gcc/config/soft-fp/fixdfti.c index 6d06514..378f727 100644 --- a/gcc/config/soft-fp/fixdfti.c +++ b/gcc/config/soft-fp/fixdfti.c @@ -31,7 +31,7 @@ #include "soft-fp.h" #include "double.h" -TItype __fixdfti(TFtype a) +TItype __fixdfti(DFtype a) { FP_DECL_EX; FP_DECL_D(A); diff --git a/gcc/config/soft-fp/floatuntisf.c b/gcc/config/soft-fp/floatuntisf.c index 11ad643..60971d6 100644 --- a/gcc/config/soft-fp/floatuntisf.c +++ b/gcc/config/soft-fp/floatuntisf.c @@ -31,7 +31,7 @@ #include "soft-fp.h" #include "single.h" -SFtype __floatundisf(UTItype i) +SFtype __floatuntisf(UTItype i) { FP_DECL_EX; FP_DECL_S(A);