mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-23 10:54:07 +08:00
convert.c (convert_to_real): Disable function transformation for now.
* convert.c (convert_to_real): Disable function transformation for now. From-SVN: r60206
This commit is contained in:
parent
3ac036b50b
commit
4b20744484
@ -1,3 +1,8 @@
|
||||
Tue Dec 17 09:47:57 CET 2002 Jan Hubicka <jh@suse.cz>
|
||||
|
||||
* convert.c (convert_to_real): Disable function transformation for
|
||||
now.
|
||||
|
||||
2002-12-16 Geoffrey Keating <geoffk@apple.com>
|
||||
|
||||
* gcc.c (handle_braces): Allow '@' as a switch name.
|
||||
|
@ -110,6 +110,9 @@ convert_to_real (type, expr)
|
||||
enum built_in_function fcode = builtin_mathfn_code (expr);
|
||||
tree itype = TREE_TYPE (expr);
|
||||
|
||||
/* Disable until we figure out how to decide whether the functions are
|
||||
present in runtime. */
|
||||
#if 0
|
||||
/* Convert (float)sqrt((double)x) where x is float into sqrtf(x) */
|
||||
if ((fcode == BUILT_IN_SQRT
|
||||
|| fcode == BUILT_IN_SQRTL
|
||||
@ -196,6 +199,7 @@ convert_to_real (type, expr)
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
/* Propagate the cast into the operation. */
|
||||
if (itype != type && FLOAT_TYPE_P (type))
|
||||
|
Loading…
Reference in New Issue
Block a user