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

Side by Side Diff: opcodes/z8kgen.c

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 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
« no previous file with comments | « opcodes/xtensa-dis.c ('k') | readline/ChangeLog.gdb » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright 2001, 2002, 2003, 2005, 2007, 2009 Free Software Foundation, Inc. 1 /* Copyright 2001, 2002, 2003, 2005, 2007, 2009, 2012
2 Free Software Foundation, Inc.
2 3
3 This file is part of the GNU opcodes library. 4 This file is part of the GNU opcodes library.
4 5
5 This library is free software; you can redistribute it and/or modify 6 This library is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by 7 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3, or (at your option) 8 the Free Software Foundation; either version 3, or (at your option)
8 any later version. 9 any later version.
9 10
10 It is distributed in the hope that it will be useful, but WITHOUT 11 It is distributed in the hope that it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public 13 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
13 License for more details. 14 License for more details.
14 15
15 You should have received a copy of the GNU General Public License 16 You should have received a copy of the GNU General Public License
16 along with this file; see the file COPYING. If not, write to the 17 along with this file; see the file COPYING. If not, write to the
17 Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, 18 Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston,
18 MA 02110-1301, USA. */ 19 MA 02110-1301, USA. */
19 20
20 /* This program generates z8k-opc.h. */ 21 /* This program generates z8k-opc.h. */
21 22
23 #include "sysdep.h"
22 #include <stdio.h> 24 #include <stdio.h>
23 #include "sysdep.h"
24 #include "libiberty.h" 25 #include "libiberty.h"
25 26
26 #define BYTE_INFO_LEN 10 27 #define BYTE_INFO_LEN 10
27 28
28 struct op 29 struct op
29 { 30 {
30 char *flags; 31 char *flags;
31 int cycles; 32 int cycles;
32 char type; 33 char type;
33 char *bits; 34 char *bits;
(...skipping 1336 matching lines...) Expand 10 before | Expand all | Expand 10 after
1370 } 1371 }
1371 else 1372 else
1372 { 1373 {
1373 printf ("Usage: %s -t\n", av[0]); 1374 printf ("Usage: %s -t\n", av[0]);
1374 printf ("-t : generate new internal table\n"); 1375 printf ("-t : generate new internal table\n");
1375 printf ("-a : generate new table for gas\n"); 1376 printf ("-a : generate new table for gas\n");
1376 printf ("-h : generate new table for humans\n"); 1377 printf ("-h : generate new table for humans\n");
1377 } 1378 }
1378 return 0; 1379 return 0;
1379 } 1380 }
OLDNEW
« no previous file with comments | « opcodes/xtensa-dis.c ('k') | readline/ChangeLog.gdb » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698