Had to comment out a line in outByte() to get it to compile because Out and tmp were
undeclared. I was not sure what Brian wanted, so I will let him fix this. But now it compiles.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6614 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/SparcV9/MappingInfo.cpp b/lib/Target/SparcV9/MappingInfo.cpp
index b79742d..6f808ab 100644
--- a/lib/Target/SparcV9/MappingInfo.cpp
+++ b/lib/Target/SparcV9/MappingInfo.cpp
@@ -106,7 +106,7 @@
 
 /// outByte -- NOT DONE YET.
 void outByte (unsigned char b) {
-  Out << "\t.byte " << tmp << "\n";
+  //Out << "\t.byte " << tmp << "\n";
 }