From 758578e1582573954bf4545627ef849ebed3cdbe Mon Sep 17 00:00:00 2001 From: Tanya Lattner Date: Wed, 4 Jun 2003 20:53:46 +0000 Subject: [PATCH] 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 --- lib/Target/SparcV9/MappingInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; }