* config/tc-mips.c (md_parse_option): Fix parsing of -O option.
authorThiemo Seufer <ths@networkno.de>
Mon, 14 May 2007 12:28:46 +0000 (12:28 +0000)
committerThiemo Seufer <ths@networkno.de>
Mon, 14 May 2007 12:28:46 +0000 (12:28 +0000)
gas/ChangeLog
gas/config/tc-mips.c

index a4a6419c4ed8a9d7ea6c9865887c03fd47e18db8..3f0e5e8f488ec41af368c355609eb3c28de3fd1c 100644 (file)
@@ -1,7 +1,11 @@
+2007-05-14  Thiemo Seufer  <ths@mips.com>
+
+       * config/tc-mips.c (md_parse_option): Fix parsing of -O option.
+
 2007-05-14  Mei Ligang  <ligang@sunnorth.com.cn>
 
-       * config/tc-score.c (data_op2, validate_immediate): Fix bug for addri, addri.c, subi, and
-       subi.c when immediate number is hex.
+       * config/tc-score.c (data_op2, validate_immediate): Fix bug for
+       addri, addri.c, subi, and subi.c when immediate number is hex.
        (score_insns): Remove subis and subis.c.
        (do_sub_rdi16): Delete.
        
index 09349449b31e7109adbb0dd856a2c039cc574099..5e8a6def85d317549bca531d883c2424301b650a 100644 (file)
@@ -11036,7 +11036,7 @@ md_parse_option (int c, char *arg)
       break;
 
     case 'O':
-      if (arg && arg[1] == '0')
+      if (arg && arg[0] == '0')
        mips_optimize = 1;
       else
        mips_optimize = 2;