diff options
| author | Mike Pall <mike> | 2016-04-18 13:40:49 +0200 |
|---|---|---|
| committer | Mike Pall <mike> | 2016-04-18 13:40:49 +0200 |
| commit | cc4f5d056ab93521451631f28501015f054d8976 (patch) | |
| tree | 074b6b8979962bf51d8e48aa9591e16516fc4f25 /src | |
| parent | 73680a5fc760cb39760e4bbfce1166ce75de237f (diff) | |
| download | luajit-cc4f5d056ab93521451631f28501015f054d8976.tar.gz luajit-cc4f5d056ab93521451631f28501015f054d8976.tar.bz2 luajit-cc4f5d056ab93521451631f28501015f054d8976.zip | |
Whitespace.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lj_asm_x86.h | 22 |
1 files 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) | |||
| 2841 | return result + (x & 15); | 2841 | return result + (x & 15); |
| 2842 | case 7: /* VEX c4/c5. */ | 2842 | case 7: /* VEX c4/c5. */ |
| 2843 | if (LJ_32 && p[1] < 0xc0) { | 2843 | if (LJ_32 && p[1] < 0xc0) { |
| 2844 | x = 2; | 2844 | x = 2; |
| 2845 | goto mrm; | 2845 | goto mrm; |
| 2846 | } | 2846 | } |
| 2847 | if (x == 0x70) { | 2847 | if (x == 0x70) { |
| 2848 | x = *++p & 0x1f; | 2848 | x = *++p & 0x1f; |
| 2849 | result++; | 2849 | result++; |
| 2850 | if (x >= 2) { | 2850 | if (x >= 2) { |
| 2851 | p += 2; | 2851 | p += 2; |
| 2852 | result += 2; | 2852 | result += 2; |
| 2853 | goto mrm; | 2853 | goto mrm; |
| 2854 | } | 2854 | } |
| 2855 | } | 2855 | } |
| 2856 | p++; | 2856 | p++; |
| 2857 | result++; | 2857 | result++; |
| @@ -2868,8 +2868,8 @@ static uint32_t asm_x86_inslen(const uint8_t* p) | |||
| 2868 | case 3: return result; | 2868 | case 3: return result; |
| 2869 | } | 2869 | } |
| 2870 | if ((x & 7) == 4) { | 2870 | if ((x & 7) == 4) { |
| 2871 | result++; | 2871 | result++; |
| 2872 | if (x < 0x40 && (p[1] & 7) == 5) result += 4; | 2872 | if (x < 0x40 && (p[1] & 7) == 5) result += 4; |
| 2873 | } | 2873 | } |
| 2874 | return result; | 2874 | return result; |
| 2875 | } | 2875 | } |
