~jderose/ubuntu/raring/qemu/vde-again

« back to all changes in this revision

Viewing changes to i386-dis.c

  • Committer: Bazaar Package Importer
  • Author(s): Aurelien Jarno, Aurelien Jarno
  • Date: 2008-08-25 04:38:35 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20080825043835-8e3tftavy8bujdch
Tags: 0.9.1-6
[ Aurelien Jarno ]
* debian/control: 
  - Update list of supported targets (Closes: bug#488339).
* debian/qemu-make-debian-root:
  - Use mktemp instead of $$ to create temporary directories (Closes: 
    bug#496394).
* debian/links:
  - Add missing links to manpages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1832
1832
 * The function returns the length of this instruction in bytes.
1833
1833
 */
1834
1834
 
1835
 
static char intel_syntax;
 
1835
static int8_t intel_syntax;
1836
1836
static char open_char;
1837
1837
static char close_char;
1838
1838
static char separator_char;
1839
1839
static char scale_char;
1840
1840
 
1841
 
/* Here for backwards compatibility.  When gdb stops using
1842
 
   print_insn_i386_att and print_insn_i386_intel these functions can
1843
 
   disappear, and print_insn_i386 be merged into print_insn.  */
1844
 
int
1845
 
print_insn_i386_att (pc, info)
1846
 
     bfd_vma pc;
1847
 
     disassemble_info *info;
1848
 
{
1849
 
  intel_syntax = 0;
1850
 
 
1851
 
  return print_insn (pc, info);
1852
 
}
1853
 
 
1854
 
int
1855
 
print_insn_i386_intel (pc, info)
1856
 
     bfd_vma pc;
1857
 
     disassemble_info *info;
1858
 
{
1859
 
  intel_syntax = 1;
1860
 
 
1861
 
  return print_insn (pc, info);
1862
 
}
1863
 
 
1864
1841
int
1865
1842
print_insn_i386 (pc, info)
1866
1843
     bfd_vma pc;