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 ae4d7ce..e67b4aa 100644
--- a/lib/CodeGen/MachineCodeEmitter.cpp
+++ b/lib/CodeGen/MachineCodeEmitter.cpp
@@ -129,6 +129,7 @@
     
     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 @@
         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) {