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

Side by Side Diff: include/dis-asm.h

Issue 124383005: GDB 7.6.50 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@upstream
Patch Set: Created 6 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 | « include/demangle.h ('k') | include/dwarf2.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 /* Interface between the opcode library and its callers. 1 /* Interface between the opcode library and its callers.
2 2
3 Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009, 2010, 3 Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009, 2010,
4 2011, 2012 Free Software Foundation, Inc. 4 2011, 2012 Free Software Foundation, Inc.
5 5
6 This program is free software; you can redistribute it and/or modify 6 This program is free software; you can redistribute it and/or modify
7 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
8 the Free Software Foundation; either version 3, or (at your option) 8 the Free Software Foundation; either version 3, or (at your option)
9 any later version. 9 any later version.
10 10
(...skipping 17 matching lines...) Expand all
28 #ifndef DIS_ASM_H 28 #ifndef DIS_ASM_H
29 #define DIS_ASM_H 29 #define DIS_ASM_H
30 30
31 #ifdef __cplusplus 31 #ifdef __cplusplus
32 extern "C" { 32 extern "C" {
33 #endif 33 #endif
34 34
35 #include <stdio.h> 35 #include <stdio.h>
36 #include "bfd.h" 36 #include "bfd.h"
37 37
38 typedef int (*fprintf_ftype) (void *, const char*, ...) /*ATTRIBUTE_FPTR_PRINT F_2*/; 38 typedef int (*fprintf_ftype) (void *, const char*, ...) ATTRIBUTE_FPTR_PRINTF_ 2;
39 39
40 enum dis_insn_type 40 enum dis_insn_type
41 { 41 {
42 dis_noninsn, /* Not a valid instruction. */ 42 dis_noninsn, /* Not a valid instruction. */
43 dis_nonbranch, /* Not a branch instruction. */ 43 dis_nonbranch, /* Not a branch instruction. */
44 dis_branch, /* Unconditional branch. */ 44 dis_branch, /* Unconditional branch. */
45 dis_condbranch, /* Conditional branch. */ 45 dis_condbranch, /* Conditional branch. */
46 dis_jsr, /* Jump to subroutine. */ 46 dis_jsr, /* Jump to subroutine. */
47 dis_condjsr, /* Conditional jump to subroutine. */ 47 dis_condjsr, /* Conditional jump to subroutine. */
48 dis_dref, /* Data reference instruction. */ 48 dis_dref, /* Data reference instruction. */
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 zero if unknown. */ 210 zero if unknown. */
211 bfd_vma target2; /* Second target address for dref2 */ 211 bfd_vma target2; /* Second target address for dref2 */
212 212
213 /* Command line options specific to the target disassembler. */ 213 /* Command line options specific to the target disassembler. */
214 char * disassembler_options; 214 char * disassembler_options;
215 215
216 } disassemble_info; 216 } disassemble_info;
217 217
218 218
219 219

error: old chunk mismatch

OLDNEW
« no previous file with comments | « include/demangle.h ('k') | include/dwarf2.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698