summaryrefslogtreecommitdiff
path: root/gcc/recog.c
diff options
context:
space:
mode:
authorzadeck <zadeck@138bc75d-0d04-0410-961f-82ee72b054a4>2013-11-19 17:21:21 +0000
committerzadeck <zadeck@138bc75d-0d04-0410-961f-82ee72b054a4>2013-11-19 17:21:21 +0000
commitcc69d08a4b5da8684670fe3a9671dc4117bfa352 (patch)
tree5990c79f85927fcc4b60fa5bcf4d2cf77a109d10 /gcc/recog.c
parentf9ae6f95055fe8521d46b1f2d87f7062d9977104 (diff)
downloadgcc-cc69d08a4b5da8684670fe3a9671dc4117bfa352.tar.gz
richards suggestions
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/wide-int@205049 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/recog.c')
-rw-r--r--gcc/recog.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc/recog.c b/gcc/recog.c
index ae2152eba7c..ecb7c06794d 100644
--- a/gcc/recog.c
+++ b/gcc/recog.c
@@ -1198,19 +1198,6 @@ const_scalar_int_operand (rtx op, enum machine_mode mode)
return 1;
}
-/* Returns 1 if OP is an operand that is a CONST_WIDE_INT of mode
- MODE. This most likely is not as useful as
- const_scalar_int_operand since it does not accept CONST_INTs, but
- is here for consistancy. */
-int
-const_wide_int_operand (rtx op, enum machine_mode mode)
-{
- if (!CONST_WIDE_INT_P (op))
- return 0;
-
- return const_scalar_int_operand (op, mode);
-}
-
/* Returns 1 if OP is an operand that is a constant integer or constant
floating-point number of MODE. */