fix x86->powerpc boot image cross build

This fixes the remaining cross-endian translation issues needed to
build powerpc boot images on x86.
This commit is contained in:
Joel Dice
2011-09-23 22:21:54 -06:00
parent e6c780e4e8
commit 3fa4a7001d
7 changed files with 35 additions and 18 deletions

View File

@ -1783,6 +1783,10 @@ class MyArchitecture: public Assembler::Architecture {
return 0;
}
virtual int scratch() {
return 5;
}
virtual int stack() {
return StackRegister;
}