diff options
author | Tanya Lattner <tonic@nondot.org> | 2003-06-04 20:53:46 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2003-06-04 20:53:46 +0000 |
commit | 758578e1582573954bf4545627ef849ebed3cdbe (patch) | |
tree | 229da60ab7c1438a784d0d2e2f47ff64a07de189 /lib/Target/SparcV9/MappingInfo.cpp | |
parent | fa9ee73a7dfe3f73c0058bf2c5842ff1adef5a15 (diff) | |
download | external_llvm-758578e1582573954bf4545627ef849ebed3cdbe.zip external_llvm-758578e1582573954bf4545627ef849ebed3cdbe.tar.gz external_llvm-758578e1582573954bf4545627ef849ebed3cdbe.tar.bz2 |
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
Diffstat (limited to 'lib/Target/SparcV9/MappingInfo.cpp')
-rw-r--r-- | lib/Target/SparcV9/MappingInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ 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"; } |