forked from OSchip/llvm-project
Each field of auxiliary debug entry is only 1 byte long.
llvm-svn: 97108
This commit is contained in:
parent
422f778ba1
commit
ad117dac4b
|
@ -419,7 +419,7 @@ void PIC16DbgInfo::EmitAuxEntry(const std::string VarName, int Aux[], int Num,
|
|||
if (TagName != "")
|
||||
O << ", " << TagName;
|
||||
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.
|
||||
|
|
Loading…
Reference in New Issue