From: Misha Brukman Date: Wed, 28 May 2003 18:27:19 +0000 (+0000) Subject: Correctly write out binary data as chars, before they're cast to ints. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=eae77de8690d9e53a695ae0286e289266716772e;p=oota-llvm.git Correctly write out binary data as chars, before they're cast to ints. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6385 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/MachineCodeEmitter.cpp b/lib/CodeGen/MachineCodeEmitter.cpp index ae4d7cecec6..e67b4aaa021 100644 --- a/lib/CodeGen/MachineCodeEmitter.cpp +++ b/lib/CodeGen/MachineCodeEmitter.cpp @@ -129,6 +129,7 @@ namespace { void emitByte(unsigned char B) { if (MCE) MCE->emitByte(B); + actual << B; actual.flush(); values[counter] = (unsigned int) B; if (++counter % 4 == 0 && counter != 0) { @@ -136,9 +137,7 @@ namespace { for (unsigned i=0; i<4; ++i) { if (values[i] < 16) o << "0"; o << values[i] << " "; - actual << values[i]; } - actual.flush(); o << std::dec << "\t"; for (unsigned i=0; i<4; ++i) {