projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fa9ee73
)
Had to comment out a line in outByte() to get it to compile because Out and tmp were
author
Tanya Lattner
<tonic@nondot.org>
Wed, 4 Jun 2003 20:53:46 +0000
(20:53 +0000)
committer
Tanya 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
patch
|
blob
|
history
diff --git
a/lib/Target/SparcV9/MappingInfo.cpp
b/lib/Target/SparcV9/MappingInfo.cpp
index b79742d6650910f5ae6993c13f07f5fbd34a128f..6f808ab77804e7389af3e3afe25ae6b589d53ffd 100644
(file)
--- 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";
}