From: Brian Gaeke Date: Fri, 23 Apr 2004 18:10:38 +0000 (+0000) Subject: Get rid of the old byte-at-a-time emission code used when the Sparc JIT was X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=4d529bc07bd72169904bfd5243379d33b246f98e;p=oota-llvm.git 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 --- diff --git a/lib/Target/SparcV9/SparcV9CodeEmitter.cpp b/lib/Target/SparcV9/SparcV9CodeEmitter.cpp index a0d9a6a28c5..fcdbb7cbfd2 100644 --- a/lib/Target/SparcV9/SparcV9CodeEmitter.cpp +++ b/lib/Target/SparcV9/SparcV9CodeEmitter.cpp @@ -468,16 +468,7 @@ SparcV9CodeEmitter::~SparcV9CodeEmitter() { } 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); -#endif } unsigned