~ubuntu-branches/ubuntu/hardy/kvm/hardy-backports

« back to all changes in this revision

Viewing changes to qemu/dyngen-exec.h

  • Committer: Bazaar Package Importer
  • Author(s): Soren Hansen
  • Date: 2008-01-03 10:39:25 UTC
  • mfrom: (1.1.16 upstream)
  • Revision ID: james.westby@ubuntu.com-20080103103925-8480u7sq2646hvbh
Tags: 1:59+dfsg-0ubuntu1
* New upstream release
* Build with alsa support (cherry pick from 57+dfsg-2)

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
// Linux/Sparc64 defines uint64_t
39
39
#if !(defined (__sparc_v9__) && defined(__linux__))
40
40
/* XXX may be done for all 64 bits targets ? */
41
 
#if defined (__x86_64__) || defined(__ia64) || defined(__s390x__)
 
41
#if defined (__x86_64__) || defined(__ia64) || defined(__s390x__) || defined(__alpha__) 
42
42
typedef unsigned long uint64_t;
43
43
#else
44
44
typedef unsigned long long uint64_t;
55
55
typedef signed int int32_t;
56
56
// Linux/Sparc64 defines int64_t
57
57
#if !(defined (__sparc_v9__) && defined(__linux__))
58
 
#if defined (__x86_64__) || defined(__ia64) || defined(__s390x__)
 
58
#if defined (__x86_64__) || defined(__ia64) || defined(__s390x__) || defined(__alpha__)
59
59
typedef signed long int64_t;
60
60
#else
61
61
typedef signed long long int64_t;