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
This commit is contained in:
Misha Brukman 2003-05-28 18:27:19 +00:00
parent 8996f44f7a
commit eae77de869

View File

@ -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) {