File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -38,17 +38,17 @@ endfunction
38
38
39
39
if has (' num64' )
40
40
function ! s: sign_extension (n ) abort
41
- if s: and (a: n , 0x80000000 )
42
- return s: or (a: n , 0xFFFFFFFF00000000 )
41
+ if and (a: n , 0x80000000 )
42
+ return or (a: n , 0xFFFFFFFF00000000 )
43
43
else
44
- return s: and (a: n , 0xFFFFFFFF )
44
+ return and (a: n , 0xFFFFFFFF )
45
45
endif
46
46
endfunction
47
47
function ! s: lshift32 (a , n ) abort
48
- return s: and (s: lshift (a: a , s: and (a: n , s: mask32 )), 0xFFFFFFFF )
48
+ return and (s: lshift (a: a , and (a: n , s: mask32 )), 0xFFFFFFFF )
49
49
endfunction
50
50
function ! s: rshift32 (a , n ) abort
51
- return s: rshift (s: and (a: a , 0xFFFFFFFF ), s: and (a: n , s: mask32 ))
51
+ return s: rshift (and (a: a , 0xFFFFFFFF ), and (a: n , s: mask32 ))
52
52
endfunction
53
53
else
54
54
function ! s: sign_extension (n ) abort
You can’t perform that action at this time.
0 commit comments