From 949bf6a9482a209dd9a42539200919731ead6ecd Mon Sep 17 00:00:00 2001 From: rsandifo Date: Wed, 20 Aug 2008 19:07:38 +0000 Subject: gcc/ * rtlanal.c (subreg_offset_representable_p): Revert last change. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@139338 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/rtlanal.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'gcc/rtlanal.c') diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c index 6337156eacb..fb4a5df7dc8 100644 --- a/gcc/rtlanal.c +++ b/gcc/rtlanal.c @@ -3241,8 +3241,7 @@ subreg_offset_representable_p (unsigned int xregno, enum machine_mode xmode, { struct subreg_info info; subreg_get_info (xregno, xmode, offset, ymode, &info); - return (info.representable_p - && HARD_REGNO_MODE_OK (xregno + info.offset, ymode)); + return info.representable_p; } /* Return the final regno that a subreg expression refers to. */ -- cgit v1.2.1