Skip to content

Commit

Permalink
Merge pull request snabbco#1068 from Igalia/from-the-cellars
Browse files Browse the repository at this point in the history
Prepare v3.1.10 release
  • Loading branch information
wingo authored May 14, 2018
2 parents 47481df + 84695bc commit 8a48fcb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/luajit/src/lj_record.c
Original file line number Diff line number Diff line change
Expand Up @@ -2332,8 +2332,6 @@ void lj_record_ins(jit_State *J)
case BC_IFORL:
case BC_IITERL:
case BC_ILOOP:
case BC_IFUNCF:
case BC_IFUNCV:
lj_trace_err(J, LJ_TRERR_BLACKL);
break;

Expand All @@ -2345,13 +2343,15 @@ void lj_record_ins(jit_State *J)
/* -- Function headers -------------------------------------------------- */

case BC_FUNCF:
case BC_IFUNCF:
rec_func_lua(J);
break;
case BC_JFUNCF:
rec_func_jit(J, rc);
break;

case BC_FUNCV:
case BC_IFUNCV:
rec_func_vararg(J);
rec_func_lua(J);
break;
Expand Down
8 changes: 8 additions & 0 deletions src/program/lwaftr/doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## [3.1.10] - 2018-05-14

* Apply hot-fix to LuaJIT to prevent blacklisted functions from
permanently preventing optimization, even after a JIT flush. For more
details, see:

https://github.com/snabbco/snabb/pull/1244

## [3.1.9] - 2017-05-18

* Add "snabb --version" command-line argument.
Expand Down

0 comments on commit 8a48fcb

Please sign in to comment.