From df3e9d4fd6e3cd1950fd0aac9635922482a8794f Mon Sep 17 00:00:00 2001 From: Giovanni LB Date: Thu, 25 Jan 2024 12:50:27 -0300 Subject: [PATCH] Changing ATT generated csv symbol source ref from 0 to empty string Change-Id: I699c7f152414554fa4f466c2679522ba578b9e28 [ROCm/rocprofiler commit: 7c7dbf8387c394a214aaf7389469a9cb64db20c0] --- projects/rocprofiler/plugin/att/stitch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/rocprofiler/plugin/att/stitch.py b/projects/rocprofiler/plugin/att/stitch.py index 14c04a9278..cc558b5fe0 100644 --- a/projects/rocprofiler/plugin/att/stitch.py +++ b/projects/rocprofiler/plugin/att/stitch.py @@ -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):