From 6da2f31aecdefffa4b92168c829294f4ef92a075 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergi=20=C3=80lvarez=20i=20Capilla?= Date: Fri, 8 Jun 2018 00:44:42 +0200 Subject: [PATCH] Fix register profile (drp) to make .!=dr* work --- src/agent/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agent/index.js b/src/agent/index.js index 9855b58b..4f14b5e2 100644 --- a/src/agent/index.js +++ b/src/agent/index.js @@ -1332,7 +1332,7 @@ function dumpRegisterProfile (args) { const inc = Process.pointerSize; let profile = regProfileAliasFor(Process.arch); for (let reg of names) { - profile += `gpr\t${reg}\t.${inc}\t${off}\t0\n`; + profile += `gpr\t${reg}\t${inc}\t${off}\t0\n`; off += inc; } return profile;