Commit 5cbc4e2a by DJ Delorie Committed by DJ Delorie

msp430.c (msp430_print_operand): 'x' modifier is independend of -mlarge.

* config/msp430/msp430.c (msp430_print_operand): 'x' modifier is
independend of -mlarge.
* config/msp430/constraints.md (Ys): Update comment.

From-SVN: r216598
parent 13e72e8d
2014-10-23 DJ Delorie <dj@redhat.com>
* config/msp430/msp430.c (msp430_print_operand): 'x' modifier is
independend of -mlarge.
* config/msp430/constraints.md (Ys): Update comment.
2014-10-23 Evgeny Stupachenko <evstupac@gmail.com>
PR target/63534
......@@ -58,7 +58,7 @@
(match_code "label_ref" "0")))
;; These are memory references that are safe to use with the X suffix,
;; These are memory references that are safe to use without the X suffix,
;; because we know/assume they need not index across the 64k boundary.
(define_constraint "Ys"
"Memory reference, stack only."
......
......@@ -2607,7 +2607,7 @@ msp430_print_operand (FILE * file, rtx op, int letter)
case 'x':
/* Similarly, but only for PSImodes. BIC, for example, needs this. */
if (TARGET_LARGE && GET_MODE (op) == PSImode)
if (GET_MODE (op) == PSImode)
fprintf (file, "X");
return;
......
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