~ubuntu-branches/debian/jessie/gdb/jessie

« back to all changes in this revision

Viewing changes to opcodes/openrisc-dis.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Jacobowitz
  • Date: 2010-03-20 01:21:29 UTC
  • mfrom: (1.3.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20100320012129-t7h25y8zgr8c2369
Tags: 7.1-1
* New upstream release, including:
  - PIE support (Closes: #346409).
  - C++ improvements, including static_cast<> et al, namespace imports,
    and bug fixes in printing virtual base classes.
  - Multi-program debugging.  One GDB can now debug multiple programs
    at the same time.
  - Python scripting improvements, including gdb.parse_and_eval.
  - Updated MIPS Linux signal frame layout (Closes: #570875).
  - No internal error stepping over _dl_debug_state (Closes: #569551).
* Update to Standards-Version: 3.8.4 (no changes required).
* Include more relevant (and smaller) docs in the gdbserver package
  (Closes: #571132).
* Do not duplicate documentation in gdb64, gdb-source, and libgdb-dev.
* Fix crash when switching into TUI mode (Closes: #568489).

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
   - the resultant file is machine generated, cgen-dis.in isn't
6
6
 
7
7
   Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2007,
8
 
   2008  Free Software Foundation, Inc.
 
8
   2008, 2010  Free Software Foundation, Inc.
9
9
 
10
10
   This file is part of libopcodes.
11
11
 
166
166
{
167
167
  disassemble_info *info = (disassemble_info *) dis_info;
168
168
 
169
 
#ifdef CGEN_PRINT_NORMAL
170
 
  CGEN_PRINT_NORMAL (cd, info, value, attrs, pc, length);
171
 
#endif
172
 
 
173
169
  /* Print the operand as directed by the attributes.  */
174
170
  if (CGEN_BOOL_ATTR (attrs, CGEN_OPERAND_SEM_ONLY))
175
171
    ; /* nothing to do */
191
187
{
192
188
  disassemble_info *info = (disassemble_info *) dis_info;
193
189
 
194
 
#ifdef CGEN_PRINT_ADDRESS
195
 
  CGEN_PRINT_ADDRESS (cd, info, value, attrs, pc, length);
196
 
#endif
197
 
 
198
190
  /* Print the operand as directed by the attributes.  */
199
191
  if (CGEN_BOOL_ATTR (attrs, CGEN_OPERAND_SEM_ONLY))
200
192
    ; /* Nothing to do.  */