Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(507)

Side by Side Diff: binutils/gas/config/tc-score7.c

Issue 3018030: [binutils] Bump binutils to 2.20.1 (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/nacl-toolchain.git
Patch Set: Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « binutils/gas/config/tc-ppc.c ('k') | binutils/gas/config/te-i386aix.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
None
OLDNEW
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
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

OLDNEW
« no previous file with comments | « binutils/gas/config/tc-ppc.c ('k') | binutils/gas/config/te-i386aix.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698