diff options
author | Mike Pall <mike> | 2020-10-12 16:18:02 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2020-10-12 16:18:02 +0200 |
commit | 1d8b747c161db457e032a023ebbff511f5de5ec2 (patch) | |
tree | 7254328c720b104f5d5b4bd8321cfcb18c6fb6ce /src/jit | |
parent | 675e08cf069725a004284b4e1e67fbf0e8fcb4dd (diff) | |
parent | 050466552bf7eb8b7944aa52c93b45326ae14d7a (diff) | |
download | luajit-1d8b747c161db457e032a023ebbff511f5de5ec2.tar.gz luajit-1d8b747c161db457e032a023ebbff511f5de5ec2.tar.bz2 luajit-1d8b747c161db457e032a023ebbff511f5de5ec2.zip |
Merge branch 'master' into v2.1
Diffstat (limited to 'src/jit')
-rw-r--r-- | src/jit/dump.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/dump.lua b/src/jit/dump.lua index 06d1e258..d3425bda 100644 --- a/src/jit/dump.lua +++ b/src/jit/dump.lua | |||
@@ -614,7 +614,7 @@ local function dump_texit(tr, ex, ngpr, nfpr, ...) | |||
614 | out:write("---- TRACE ", tr, " exit ", ex, "\n") | 614 | out:write("---- TRACE ", tr, " exit ", ex, "\n") |
615 | if dumpmode.X then | 615 | if dumpmode.X then |
616 | local regs = {...} | 616 | local regs = {...} |
617 | if jit.arch == "x64" then | 617 | if jit.arch:sub(-2) == "64" then |
618 | for i=1,ngpr do | 618 | for i=1,ngpr do |
619 | out:write(format(" %016x", regs[i])) | 619 | out:write(format(" %016x", regs[i])) |
620 | if i % 4 == 0 then out:write("\n") end | 620 | if i % 4 == 0 then out:write("\n") end |