diff options
author | Uros Bizjak <uros@kss-loka.si> | 2005-03-24 07:22:37 +0100 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2005-03-24 07:22:37 +0100 |
commit | 59d4982b57259c96416a1b43b7fc0ad108a4c84b (patch) | |
tree | b164bb9663d15e4d7c756651662a0419fc6973d7 /gcc/builtins.c | |
parent | fab2f52cf844f20ec3b575d41ad7e5c2d817190d (diff) | |
download | gcc-59d4982b57259c96416a1b43b7fc0ad108a4c84b.zip gcc-59d4982b57259c96416a1b43b7fc0ad108a4c84b.tar.gz gcc-59d4982b57259c96416a1b43b7fc0ad108a4c84b.tar.bz2 |
optabs.h (enum optab_index): Remove OTI_llrint.
* optabs.h (enum optab_index): Remove OTI_llrint.
(llrint_optab): Remove macro.
* optabs.c (init_optabs): Remove llrint_optab initialization.
* genopinit.c (optabs): Remove llrint_optab implementation.
* builtins.c (expand_builtin_mathfn): Handle BUILT_IN_LLRINT{,F,L}
using lrint_optab.
From-SVN: r96983
Diffstat (limited to 'gcc/builtins.c')
-rw-r--r-- | gcc/builtins.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/builtins.c b/gcc/builtins.c index 703fb3f..23bb429 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -1761,11 +1761,10 @@ expand_builtin_mathfn (tree exp, rtx target, rtx subtarget) case BUILT_IN_LRINT: case BUILT_IN_LRINTF: case BUILT_IN_LRINTL: - builtin_optab = lrint_optab; break; case BUILT_IN_LLRINT: case BUILT_IN_LLRINTF: case BUILT_IN_LLRINTL: - builtin_optab = llrint_optab; break; + builtin_optab = lrint_optab; break; default: gcc_unreachable (); } |