aboutsummaryrefslogtreecommitdiff
path: root/gcc/combine.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2006-03-14 18:16:21 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2006-03-14 18:16:21 +0000
commitdf6872b72d5ceb81427a55038f0dba06b72f7a68 (patch)
tree2de3a4b654eabedc9623db6e907605ab95ddca89 /gcc/combine.c
parent02433683072585bfffaef02567c3a496081cff55 (diff)
downloadgcc-df6872b72d5ceb81427a55038f0dba06b72f7a68.zip
gcc-df6872b72d5ceb81427a55038f0dba06b72f7a68.tar.gz
gcc-df6872b72d5ceb81427a55038f0dba06b72f7a68.tar.bz2
* combine.c (UWIDE_SHIFT_LEFT_BY_BITS_PER_WORD): Remove.
From-SVN: r112062
Diffstat (limited to 'gcc/combine.c')
-rw-r--r--gcc/combine.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/gcc/combine.c b/gcc/combine.c
index 04a3b04..2ff106d 100644
--- a/gcc/combine.c
+++ b/gcc/combine.c
@@ -139,12 +139,6 @@ static int max_uid_cuid;
#define INSN_CUID(INSN) \
(INSN_UID (INSN) > max_uid_cuid ? insn_cuid (INSN) : uid_cuid[INSN_UID (INSN)])
-/* In case BITS_PER_WORD == HOST_BITS_PER_WIDE_INT, shifting by
- BITS_PER_WORD would invoke undefined behavior. Work around it. */
-
-#define UWIDE_SHIFT_LEFT_BY_BITS_PER_WORD(val) \
- (((unsigned HOST_WIDE_INT) (val) << (BITS_PER_WORD - 1)) << 1)
-
/* Maximum register number, which is the size of the tables below. */
static unsigned int combine_max_regno;