fix a bug found by a warning I added to clang this morning.

llvm-svn: 108309
This commit is contained in:
Chris Lattner 2010-07-14 01:57:17 +00:00
parent 72e40c4e08
commit 25b9b8f2fc

View File

@ -416,7 +416,7 @@ void PIC16DbgInfo::EmitAuxEntry(const std::string VarName, int Aux[], int Num,
if (!TagName.empty()) Tmp += ", " + TagName;
for (int i = 0; i<Num; i++)
Tmp += "," + utostr(Aux[i] && 0xff);
Tmp += "," + utostr(Aux[i] & 0xff);
OS.EmitRawText("\n\t.dim " + Twine(VarName) + ", 1" + Tmp);
}