diff options
author | Fredrik Unger <fred@tree.se> | 2008-11-26 13:32:43 +0100 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2008-11-26 13:32:43 +0100 |
commit | 39dfdd20985319c3c9f3cfb679194a0c2045f742 (patch) | |
tree | 15083488658f3e118921bfc171354c9d539f54c4 | |
parent | 5d059ed962692fac1fca10ede9e25c248c4eb726 (diff) | |
download | gcc-39dfdd20985319c3c9f3cfb679194a0c2045f742.zip gcc-39dfdd20985319c3c9f3cfb679194a0c2045f742.tar.gz gcc-39dfdd20985319c3c9f3cfb679194a0c2045f742.tar.bz2 |
floatuntisf.c (__floatuntisf): Correct function name from __floatundisf.
* config/soft-fp/floatuntisf.c (__floatuntisf): Correct
function name from __floatundisf.
* config/soft-fp/fixdfti.c (__fixdfti): Correct argument type to
DFtype.
From-SVN: r142218
-rw-r--r-- | gcc/ChangeLog | 9 | ||||
-rw-r--r-- | gcc/config/soft-fp/fixdfti.c | 2 | ||||
-rw-r--r-- | gcc/config/soft-fp/floatuntisf.c | 2 |
3 files changed, 10 insertions, 3 deletions
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 <fred@tree.se> + + * 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 <dberlin@dberlin.org> - Richard Guenther <rguenther@suse.de> + Richard Guenther <rguenther@suse.de> 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); |