diff options
author | Joseph Myers <jsm28@cam.ac.uk> | 2000-12-23 00:51:20 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2000-12-23 00:51:20 +0000 |
commit | 29b5ca410ac03130b3ca12fb34d37b58a93547b6 (patch) | |
tree | b0aa146596a6e66f3917f91b3378fc654c916455 /gcc/builtins.c | |
parent | fc2aaf309ff26e6d8ecbe2dd17e8ca628f66fa62 (diff) | |
download | gcc-29b5ca410ac03130b3ca12fb34d37b58a93547b6.zip gcc-29b5ca410ac03130b3ca12fb34d37b58a93547b6.tar.gz gcc-29b5ca410ac03130b3ca12fb34d37b58a93547b6.tar.bz2 |
builtins.def (BUILT_IN_LABS, [...]): Don't define.
* builtins.def (BUILT_IN_LABS, BUILT_IN_LLABS, BUILT_IN_IMAXABS):
Don't define.
* builtins.c (expand_builtin): Don't handle BUILT_IN_LABS,
BUILT_IN_LLABS and BUILT_IN_IMAXABS.
* c-common.c (c_common_nodes_and_builtins): Use BUILT_IN_ABS for
builtin labs, llabs and imaxabs.
(expand_tree_builtin): Don't handle BUILT_IN_LABS, BUILT_IN_LLABS
and BUILT_IN_IMAXABS.
From-SVN: r38475
Diffstat (limited to 'gcc/builtins.c')
-rw-r--r-- | gcc/builtins.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/builtins.c b/gcc/builtins.c index 3d74681..1d234aa 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -3401,9 +3401,6 @@ expand_builtin (exp, target, subtarget, mode, ignore) switch (fcode) { case BUILT_IN_ABS: - case BUILT_IN_LABS: - case BUILT_IN_LLABS: - case BUILT_IN_IMAXABS: case BUILT_IN_FABS: /* build_function_call changes these into ABS_EXPR. */ abort (); |