mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
Get rid of the old byte-at-a-time emission code used when the Sparc JIT was
being tested on X86, as per Chris's request. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13124 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b440dea57b
commit
4d529bc07b
@ -468,16 +468,7 @@ SparcV9CodeEmitter::~SparcV9CodeEmitter() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void SparcV9CodeEmitter::emitWord(unsigned Val) {
|
void SparcV9CodeEmitter::emitWord(unsigned Val) {
|
||||||
#if 0 // I think this was used when the Sparc JIT was being tested on X86:
|
|
||||||
// Output the constant in big endian byte order...
|
|
||||||
unsigned byteVal;
|
|
||||||
for (int i = 3; i >= 0; --i) {
|
|
||||||
byteVal = Val >> 8*i;
|
|
||||||
MCE.emitByte(byteVal & 255);
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
MCE.emitWord(Val);
|
MCE.emitWord(Val);
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned
|
unsigned
|
||||||
|
Loading…
Reference in New Issue
Block a user