From 29b4c63ffda1e96bfda26663bd3f3c4fb0edf02a Mon Sep 17 00:00:00 2001 From: Gregor Haas Date: Wed, 19 Feb 2020 16:48:01 -0500 Subject: [PATCH] fixed some unknown values which are actually known --- tools/profile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/profile.py b/tools/profile.py index 960fe36..f0833ec 100644 --- a/tools/profile.py +++ b/tools/profile.py @@ -62,7 +62,7 @@ class Profile(gdb.Command): arg1 = instr_spl[2].strip(',') if len(instr_spl) > 3: - arg2 = instr_spl[3] + arg2 = instr_spl[3].strip(',') if mnem == 'bl' or mnem == 'blr': outfile.write('\tentering %s\n' % dest)