diff options
Diffstat (limited to 'llvm/lib/Target/SparcV9/MappingInfo.h')
| -rw-r--r-- | llvm/lib/Target/SparcV9/MappingInfo.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/SparcV9/MappingInfo.h b/llvm/lib/Target/SparcV9/MappingInfo.h index be3de49385b..4fbd04fbae9 100644 --- a/llvm/lib/Target/SparcV9/MappingInfo.h +++ b/llvm/lib/Target/SparcV9/MappingInfo.h @@ -37,11 +37,11 @@ class MappingInfo { public: void outByte (unsigned char b) { bytes.push_back (b); } MappingInfo (std::string Comment, std::string SymbolPrefix, - unsigned FunctionNumber) : comment(Comment), - symbolPrefix(SymbolPrefix), functionNumber(FunctionNumber) {} + unsigned FunctionNumber) : comment(Comment), + symbolPrefix(SymbolPrefix), functionNumber(FunctionNumber) {} void dumpAssembly (std::ostream &Out); unsigned char *getBytes (unsigned &length) { - length = bytes.size(); return &bytes[0]; + length = bytes.size(); return &bytes[0]; } }; |

