~dannf/qemu-linaro/qemu-highbank-ppa

« back to all changes in this revision

Viewing changes to thunk.h

  • Committer: Steve Langasek
  • Date: 2012-03-15 21:13:19 UTC
  • mfrom: (0.1.15)
  • Revision ID: steve.langasek@canonical.com-20120315211319-f1j3ot1ihx30b2s9
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
99
99
    case TYPE_PTRVOID:
100
100
    case TYPE_PTR:
101
101
        if (is_host) {
102
 
            return HOST_LONG_SIZE;
 
102
            return sizeof(void *);
103
103
        } else {
104
104
            return TARGET_ABI_BITS / 8;
105
105
        }
136
136
    case TYPE_PTRVOID:
137
137
    case TYPE_PTR:
138
138
        if (is_host) {
139
 
            return HOST_LONG_SIZE;
 
139
            return sizeof(void *);
140
140
        } else {
141
141
            return TARGET_ABI_BITS / 8;
142
142
        }