diff options
author | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-06-06 05:15:16 +0000 |
---|---|---|
committer | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-06-06 05:15:16 +0000 |
commit | 9f96175798df76cbd74e3081e5384857315fc921 (patch) | |
tree | 3108b60b2cf1b8933ca55cfe892193aa0fcb7b10 /gcc/config/msp430/msp430.c | |
parent | d650c5bc34155316684d912d95f745e452669baf (diff) | |
download | gcc-9f96175798df76cbd74e3081e5384857315fc921.tar.gz |
* config/msp430/msp430.c (msp430_asm_integer): Support addition
and subtraction too.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@224182 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/msp430/msp430.c')
-rw-r--r-- | gcc/config/msp430/msp430.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/config/msp430/msp430.c b/gcc/config/msp430/msp430.c index 1c18047807d..0fc7d50d810 100644 --- a/gcc/config/msp430/msp430.c +++ b/gcc/config/msp430/msp430.c @@ -976,7 +976,8 @@ msp430_asm_integer (rtx x, unsigned int size, int aligned_p) switch (size) { case 4: - if (c == SYMBOL_REF || c == CONST || c == LABEL_REF || c == CONST_INT) + if (c == SYMBOL_REF || c == CONST || c == LABEL_REF || c == CONST_INT + || c == PLUS || c == MINUS) { fprintf (asm_out_file, "\t.long\t"); output_addr_const (asm_out_file, x); |