Had to comment out a line in outByte() to get it to compile because Out and tmp were
authorTanya Lattner <tonic@nondot.org>
Wed, 4 Jun 2003 20:53:46 +0000 (20:53 +0000)
committerTanya Lattner <tonic@nondot.org>
Wed, 4 Jun 2003 20:53:46 +0000 (20:53 +0000)
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

lib/Target/SparcV9/MappingInfo.cpp

index b79742d6650910f5ae6993c13f07f5fbd34a128f..6f808ab77804e7389af3e3afe25ae6b589d53ffd 100644 (file)
@@ -106,7 +106,7 @@ void getMappingInfoForFunction::writeEpilogue(const std::string &symbolPrefix,
 
 /// outByte -- NOT DONE YET.
 void outByte (unsigned char b) {
-  Out << "\t.byte " << tmp << "\n";
+  //Out << "\t.byte " << tmp << "\n";
 }