Changing ATT generated csv symbol source ref from 0 to empty string

Change-Id: I699c7f152414554fa4f466c2679522ba578b9e28


[ROCm/rocprofiler commit: 7c7dbf8387]
This commit is contained in:
Giovanni LB
2024-01-25 12:50:27 -03:00
committed by Giovanni Baraldi
parent 97969346c7
commit df3e9d4fd6
+1 -1
View File
@@ -197,7 +197,7 @@ class PCTranslator:
symbol = "Unkown symbol at 0x" + hex(addr)
last_line = self.raw_code[-1]
newline = ['; ' + symbol, DONT_KNOW, last_line[2], 0, last_line[4], last_line[5], 0, 0, 0]
newline = ['; ' + symbol, DONT_KNOW, last_line[2], '', last_line[4], last_line[5], 0, 0, 0]
self.raw_code.append(newline)
def getcode(self, addr):