mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-15 07:59:33 +00:00
fix a bug found by a warning I added to clang this morning.
llvm-svn: 108309
This commit is contained in:
parent
72e40c4e08
commit
25b9b8f2fc
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user