~ubuntu-branches/ubuntu/vivid/basilisk2/vivid

« back to all changes in this revision

Viewing changes to src/uae_cpu/fpu/types.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2008-03-06 19:33:01 UTC
  • mfrom: (2.1.4 gutsy)
  • Revision ID: james.westby@ubuntu.com-20080306193301-cc2ofn705nfsq3y0
Tags: 0.9.20070407-4
* Update copyright-check cdbs snippet to parse licensecheck using perl:
  + No longer randomly drops newlines
  + More compact hint file (and ordered more like wiki-proposed new copyright
    syntax).
  + No longer ignore files without copyright.
* Update copyright_hints.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 *  types.h - basic types for fpu registers
3
3
 *
4
 
 *  Basilisk II (C) 1997-1999 Christian Bauer
 
4
 *  Basilisk II (C) 1997-2005 Christian Bauer
5
5
 *
6
6
 *  MC68881/68040 fpu emulation
7
7
 *  
133
133
typedef long double uae_f96;
134
134
typedef uae_f96 fpu_register;
135
135
#define USE_LONG_DOUBLE 1
136
 
#elif SIZEOF_LONG_DOUBLE == 16 && defined(__x86_64__)
 
136
#elif SIZEOF_LONG_DOUBLE == 16 && (defined(__i386__) || defined(__x86_64__))
137
137
/* Long doubles on x86-64 are really held in old x87 FPU stack.  */
138
138
typedef long double uae_f128;
139
139
typedef uae_f128 fpu_register;