Commit f6d65153 by Steve Ellcey Committed by Steve Ellcey

re PR rtl-optimization/26345 (-fmove-loop-invariants loses POINTER attribute)

	PR rtl-optimization/26345
	PR target/19061
	* config/ia64/predicates.md (basereg_operand): Don't look in subregs.

From-SVN: r111678
parent 5b725b8d
2006-03-03 Steve Ellcey <sje@cup.hp.com>
PR rtl-optimization/26345
PR target/19061
* config/ia64/predicates.md (basereg_operand): Don't look in subregs.
2006-03-03 Roger Sayle <roger@eyesopen.com>
PR tree-optimization/26524
......
......@@ -586,8 +586,6 @@
(define_predicate "basereg_operand"
(match_operand 0 "register_operand")
{
if (GET_CODE (op) == SUBREG)
op = SUBREG_REG (op);
return REG_POINTER (op);
return REG_P (op) && REG_POINTER (op);
})
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment