mirror of git://gcc.gnu.org/git/gcc.git
re PR target/58716 ([PATCH] MSP430X check is inverted)
PR target/58716 * config/msp430/msp430.c (msp430_option_override): Correct thinko scanning for msp430x targets. From-SVN: r203520
This commit is contained in:
parent
b5ccb9edcb
commit
a6dbd0f72b
|
|
@ -1,3 +1,9 @@
|
||||||
|
2013-10-14 Travis Snoozy <quandary@remstate.com>
|
||||||
|
|
||||||
|
PR target/58716
|
||||||
|
* config/msp430/msp430.c (msp430_option_override): Correct thinko
|
||||||
|
scanning for msp430x targets.
|
||||||
|
|
||||||
2013-10-14 Eric Botcazou <ebotcazou@adacore.com>
|
2013-10-14 Eric Botcazou <ebotcazou@adacore.com>
|
||||||
|
|
||||||
PR bootstrap/58509
|
PR bootstrap/58509
|
||||||
|
|
|
||||||
|
|
@ -182,7 +182,7 @@ msp430_option_override (void)
|
||||||
unsigned i;
|
unsigned i;
|
||||||
|
|
||||||
for (i = ARRAY_SIZE (msp430x_names); i--;)
|
for (i = ARRAY_SIZE (msp430x_names); i--;)
|
||||||
if (strcasecmp (target_cpu, msp430x_names[i]))
|
if (strcasecmp (target_cpu, msp430x_names[i]) == 0)
|
||||||
{
|
{
|
||||||
msp430x = true;
|
msp430x = true;
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue