Skip to content

Commit

Permalink
Fix register profile (drp) to make .!=dr* work
Browse files Browse the repository at this point in the history
  • Loading branch information
trufae committed Jun 7, 2018
1 parent a2a2234 commit 6da2f31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/agent/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 6da2f31

Please sign in to comment.