1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-11-07 03:12:33 +01:00

Fix comments in WASM code

This commit is contained in:
Raymond Hill 2019-10-26 15:34:40 -04:00
parent fb457a3dff
commit 0373410635
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -101,7 +101,7 @@
i32.const 1
i32.add
tee_local $needleLeft
;; if ( needleLeft === needleRight ) { break; }
;; if ( needleLeft === needleRight ) { return 1; }
get_local $needleRight
i32.eq
if
@ -116,7 +116,7 @@
br $compare
end end
;; }
;; return true;
;; return 0;
i32.const 0
)