From: Tanya Lattner Date: Wed, 4 Jun 2003 20:53:46 +0000 (+0000) Subject: Had to comment out a line in outByte() to get it to compile because Out and tmp were X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=758578e1582573954bf4545627ef849ebed3cdbe;p=oota-llvm.git 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 b79742d6650..6f808ab7780 100644 --- a/lib/Target/SparcV9/MappingInfo.cpp +++ b/lib/Target/SparcV9/MappingInfo.cpp @@ -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"; }