| commit | e6ba0b576231ad3af599d1985dad370e59d954f9 | [log] [tgz] |
|---|---|---|
| author | Sanjiv Gupta <sanjiv.gupta@microchip.com> | Thu Feb 25 03:54:49 2010 +0000 |
| committer | Sanjiv Gupta <sanjiv.gupta@microchip.com> | Thu Feb 25 03:54:49 2010 +0000 |
| tree | 31c720b9e83f37acc2877c6eb45acbbe90a5f20b | |
| parent | bd2c623903d4b9f4f1c8192bcf48811dbd3f7bc4 [diff] |
Each field of auxiliary debug entry is only 1 byte long. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97108 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/PIC16/PIC16DebugInfo.cpp b/lib/Target/PIC16/PIC16DebugInfo.cpp index c517b1b..877e4ff 100644 --- a/lib/Target/PIC16/PIC16DebugInfo.cpp +++ b/lib/Target/PIC16/PIC16DebugInfo.cpp
@@ -419,7 +419,7 @@ 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.