~ubuntu-branches/ubuntu/feisty/basilisk2/feisty

« 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: 2006-06-01 01:11:16 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060601011116-xjhegbgyfsxag5fl
Tags: 0.9.20060529-1
* New upstream CVS snapshot.
* Update local cdbs snippet copyright-check.mk:
  + Broaden scan to also look for "(c)" by default.
  + Make egrep options configurable.
  + Ignore auto-tools files.
* Bump up standards-version to 3.7.2 (no changes needed).
* Let dh_strip do the stripping (not the make install target).

Show diffs side-by-side

added added

removed removed

Lines of Context:
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;