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
This commit is contained in:
Tanya Lattner 2003-06-04 20:53:46 +00:00
parent fa9ee73a7d
commit 758578e158

View 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";
}