1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Each field of auxiliary debug entry is only 1 byte long.

llvm-svn: 97108
This commit is contained in:
Sanjiv Gupta 2010-02-25 03:54:49 +00:00
parent bbe3592817
commit 11798e6c79

View File

@ -419,7 +419,7 @@ void PIC16DbgInfo::EmitAuxEntry(const std::string VarName, int Aux[], int Num,
if (TagName != "") if (TagName != "")
O << ", " << TagName; O << ", " << TagName;
for (int i = 0; i<Num; i++) for (int i = 0; i<Num; i++)
O << "," << Aux[i]; O << "," << (Aux[i] && 0xff);
} }
/// EmitSymbol - Emit .def for a symbol. Value is offset for the member. /// EmitSymbol - Emit .def for a symbol. Value is offset for the member.