| OLD | NEW |
| 1 /* tc-score7.c -- Assembler for Score7 | 1 /* tc-score7.c -- Assembler for Score7 |
| 2 Copyright 2009 Free Software Foundation, Inc. | 2 Copyright 2009 Free Software Foundation, Inc. |
| 3 Contributed by: | 3 Contributed by: |
| 4 Brain.lin (brain.lin@sunplusct.com) | 4 Brain.lin (brain.lin@sunplusct.com) |
| 5 Mei Ligang (ligang@sunnorth.com.cn) | 5 Mei Ligang (ligang@sunnorth.com.cn) |
| 6 Pei-Lin Tsai (pltsai@sunplus.com) | 6 Pei-Lin Tsai (pltsai@sunplus.com) |
| 7 | 7 |
| 8 This file is part of GAS, the GNU Assembler. | 8 This file is part of GAS, the GNU Assembler. |
| 9 | 9 |
| 10 GAS is free software; you can redistribute it and/or modify | 10 GAS is free software; you can redistribute it and/or modify |
| (...skipping 6260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6271 s7_number_to_chars (litP, (valueT) words[i], 2); | 6271 s7_number_to_chars (litP, (valueT) words[i], 2); |
| 6272 litP += 2; | 6272 litP += 2; |
| 6273 } | 6273 } |
| 6274 } | 6274 } |
| 6275 else | 6275 else |
| 6276 { | 6276 { |
| 6277 for (i = 0; i < prec; i += 2) | 6277 for (i = 0; i < prec; i += 2) |
| 6278 { | 6278 { |
| 6279 s7_number_to_chars (litP, (valueT) words[i + 1], 2); | 6279 s7_number_to_chars (litP, (valueT) words[i + 1], 2); |
| 6280 s7_number_to_chars (litP + 2, (valueT) words[i], 2); | 6280 s7_number_to_chars (litP + 2, (valueT) words[i], 2); |
error: old chunk mismatch |
None
| OLD | NEW |