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

« back to all changes in this revision

Viewing changes to qemu/softmmu_template.h

  • Committer: Bazaar Package Importer
  • Author(s): Soren Hansen
  • Date: 2008-02-26 13:10:57 UTC
  • mfrom: (1.1.18 upstream)
  • Revision ID: james.westby@ubuntu.com-20080226131057-s67x6l89mtjw1x9b
Tags: 1:62+dfsg-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
}
76
76
 
77
77
/* handle all cases except unaligned access which span two pages */
78
 
DATA_TYPE REGPARM(1) glue(glue(__ld, SUFFIX), MMUSUFFIX)(target_ulong addr,
79
 
                                                         int mmu_idx)
 
78
DATA_TYPE REGPARM glue(glue(__ld, SUFFIX), MMUSUFFIX)(target_ulong addr,
 
79
                                                      int mmu_idx)
80
80
{
81
81
    DATA_TYPE res;
82
82
    int index;
209
209
#endif
210
210
}
211
211
 
212
 
void REGPARM(2) glue(glue(__st, SUFFIX), MMUSUFFIX)(target_ulong addr,
213
 
                                                    DATA_TYPE val,
214
 
                                                    int mmu_idx)
 
212
void REGPARM glue(glue(__st, SUFFIX), MMUSUFFIX)(target_ulong addr,
 
213
                                                 DATA_TYPE val,
 
214
                                                 int mmu_idx)
215
215
{
216
216
    target_phys_addr_t physaddr;
217
217
    target_ulong tlb_addr;