Skip to content

Commit

Permalink
Each field of auxiliary debug entry is only 1 byte long.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97108 91177308-0d34-0410-b5e6-96231b3b80d8
Sanjiv Gupta committed Feb 25, 2010
1 parent bd2c623 commit e6ba0b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Target/PIC16/PIC16DebugInfo.cpp
Original file line number Diff line number Diff line change
@@ -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.

0 comments on commit e6ba0b5

Please sign in to comment.