From cc4f5d056ab93521451631f28501015f054d8976 Mon Sep 17 00:00:00 2001 From: Mike Pall Date: Mon, 18 Apr 2016 13:40:49 +0200 Subject: [PATCH] Whitespace. --- src/lj_asm_x86.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/lj_asm_x86.h b/src/lj_asm_x86.h index 39a792c2..86a5b0a8 100644 --- a/src/lj_asm_x86.h +++ b/src/lj_asm_x86.h @@ -2841,17 +2841,17 @@ static uint32_t asm_x86_inslen(const uint8_t* p) return result + (x & 15); case 7: /* VEX c4/c5. */ if (LJ_32 && p[1] < 0xc0) { - x = 2; - goto mrm; + x = 2; + goto mrm; } if (x == 0x70) { - x = *++p & 0x1f; - result++; - if (x >= 2) { - p += 2; - result += 2; - goto mrm; - } + x = *++p & 0x1f; + result++; + if (x >= 2) { + p += 2; + result += 2; + goto mrm; + } } p++; result++; @@ -2868,8 +2868,8 @@ static uint32_t asm_x86_inslen(const uint8_t* p) case 3: return result; } if ((x & 7) == 4) { - result++; - if (x < 0x40 && (p[1] & 7) == 5) result += 4; + result++; + if (x < 0x40 && (p[1] & 7) == 5) result += 4; } return result; } -- 2.11.4.GIT