msp430.c (msp430_print_operand): 'x' modifier is independend of -mlarge.
authorDJ Delorie <dj@redhat.com>
Thu, 23 Oct 2014 19:02:48 +0000 (15:02 -0400)
committerDJ Delorie <dj@gcc.gnu.org>
Thu, 23 Oct 2014 19:02:48 +0000 (15:02 -0400)
* config/msp430/msp430.c (msp430_print_operand): 'x' modifier is
independend of -mlarge.
* config/msp430/constraints.md (Ys): Update comment.

From-SVN: r216598

gcc/ChangeLog
gcc/config/msp430/constraints.md
gcc/config/msp430/msp430.c

index 70f6e0db9f50dc28e16254608f847338f6a62ab0..33249e5ecb33456b2dec9ffe62e04d12cc904e32 100644 (file)
@@ -1,3 +1,9 @@
+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
index 055125f5b1cea8e68033ab8b87f06e7b836f4a6d..5ff4ab6164b8788f29f96928ad2be5bd13179e7c 100644 (file)
@@ -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."
index da7bfb3e855753edc3cc4e0495608d05d7f1a7bd..43ac5df77a2c8d82d0b78894b83f7b63be882a1b 100644 (file)
@@ -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;