diff options
author | Mike Pall <mike> | 2019-04-29 18:02:50 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2019-04-29 18:02:50 +0200 |
commit | 9bd5a722bee2ee2c5b159a89937778b81be49915 (patch) | |
tree | 2f7a7ae003e38c10a85aee0fc9664ffdc4ba084f /src/lj_asm.c | |
parent | 5802ab56b6435e8ea39616d04751b32b9996bfb7 (diff) | |
download | luajit-9bd5a722bee2ee2c5b159a89937778b81be49915.tar.gz luajit-9bd5a722bee2ee2c5b159a89937778b81be49915.tar.bz2 luajit-9bd5a722bee2ee2c5b159a89937778b81be49915.zip |
ARM: Fix GCC 7 -Wimplicit-fallthrough warnings.
Diffstat (limited to 'src/lj_asm.c')
-rw-r--r-- | src/lj_asm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_asm.c b/src/lj_asm.c index dd7186f6..8ce7bbd6 100644 --- a/src/lj_asm.c +++ b/src/lj_asm.c | |||
@@ -1719,8 +1719,8 @@ static void asm_setup_regsp(ASMState *as) | |||
1719 | #if LJ_SOFTFP | 1719 | #if LJ_SOFTFP |
1720 | case IR_MIN: case IR_MAX: | 1720 | case IR_MIN: case IR_MAX: |
1721 | if ((ir+1)->o != IR_HIOP) break; | 1721 | if ((ir+1)->o != IR_HIOP) break; |
1722 | /* fallthrough */ | ||
1723 | #endif | 1722 | #endif |
1723 | /* fallthrough */ | ||
1724 | /* C calls evict all scratch regs and return results in RID_RET. */ | 1724 | /* C calls evict all scratch regs and return results in RID_RET. */ |
1725 | case IR_SNEW: case IR_XSNEW: case IR_NEWREF: | 1725 | case IR_SNEW: case IR_XSNEW: case IR_NEWREF: |
1726 | if (REGARG_NUMGPR < 3 && as->evenspill < 3) | 1726 | if (REGARG_NUMGPR < 3 && as->evenspill < 3) |