diff options
author | James Van Artsdalen <jrv@gnu.org> | 1992-11-12 13:37:21 +0000 |
---|---|---|
committer | James Van Artsdalen <jrv@gnu.org> | 1992-11-12 13:37:21 +0000 |
commit | 8f2400848464baf07d6b970cef03d864102982a0 (patch) | |
tree | 1fba187543d634dcb012b1127001414f11fc0c7e /gcc | |
parent | 1bbe49a61811a8abef89487625f87bf338a9639f (diff) | |
download | gcc-8f2400848464baf07d6b970cef03d864102982a0.zip gcc-8f2400848464baf07d6b970cef03d864102982a0.tar.gz gcc-8f2400848464baf07d6b970cef03d864102982a0.tar.bz2 |
(float_op): Delete - no longer used.
From-SVN: r2746
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/i386/i386.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index fd2f1f9..6153a3a 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -1457,21 +1457,6 @@ convert_387_op (op, mode) } } -/* Return 1 if this is a valid "float from int" operation on a 387. - OP is the expression matched, and MODE is its mode. */ - -int -float_op (op, mode) - register rtx op; - enum machine_mode mode; -{ - if (mode != VOIDmode && mode != GET_MODE (op)) - return 0; - - return GET_CODE (op) == FLOAT - && GET_MODE_CLASS (GET_MODE (op)) == MODE_FLOAT; -} - /* Return 1 if this is a valid shift or rotate operation on a 386. OP is the expression matched, and MODE is its mode. */ |