comparison gcc/config/m68hc11/predicates.md @ 55:77e2b8dfacca gcc-4.4.5

update it from 4.4.3 to 4.5.0
author ryoma <e075725@ie.u-ryukyu.ac.jp>
date Fri, 12 Feb 2010 23:39:51 +0900
parents a06113de4d67
children
comparison
equal deleted inserted replaced
52:c156f1bd5cd9 55:77e2b8dfacca
1 ;; Predicate definitions for Motorola 68HC11 and 68HC12. 1 ;; Predicate definitions for Motorola 68HC11 and 68HC12.
2 ;; Copyright (C) 2005, 2007 Free Software Foundation, Inc. 2 ;; Copyright (C) 2005, 2007, 2009 Free Software Foundation, Inc.
3 ;; 3 ;;
4 ;; This file is part of GCC. 4 ;; This file is part of GCC.
5 ;; 5 ;;
6 ;; GCC is free software; you can redistribute it and/or modify 6 ;; GCC is free software; you can redistribute it and/or modify
7 ;; it under the terms of the GNU General Public License as published by 7 ;; it under the terms of the GNU General Public License as published by
183 if (GET_CODE (op) == REG && reload_in_progress 183 if (GET_CODE (op) == REG && reload_in_progress
184 && REGNO (op) >= FIRST_PSEUDO_REGISTER 184 && REGNO (op) >= FIRST_PSEUDO_REGISTER
185 && reg_equiv_memory_loc[REGNO (op)]) 185 && reg_equiv_memory_loc[REGNO (op)])
186 { 186 {
187 op = reg_equiv_memory_loc[REGNO (op)]; 187 op = reg_equiv_memory_loc[REGNO (op)];
188 op = eliminate_regs (op, 0, NULL_RTX); 188 op = eliminate_regs (op, VOIDmode, NULL_RTX);
189 } 189 }
190 if (GET_CODE (op) != MEM) 190 if (GET_CODE (op) != MEM)
191 return 0; 191 return 0;
192 192
193 op0 = XEXP (op, 0); 193 op0 = XEXP (op, 0);