Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(147)

Unified Diff: src/wasm/ast-decoder.cc

Issue 2168183002: [wasm] Adding a convolution matrix filter test to highlight the performance advantages of JITing (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Removed unnecessary changes Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/wasm/ast-decoder.cc
diff --git a/src/wasm/ast-decoder.cc b/src/wasm/ast-decoder.cc
index facdab62eeecd7c568dc33180daee24dca7e1a88..cc0f26b0da8341d41b37a4f6aa43de6b6b6b70ff 100644
--- a/src/wasm/ast-decoder.cc
+++ b/src/wasm/ast-decoder.cc
@@ -17,7 +17,6 @@
#include "src/ostreams.h"
#include "src/compiler/wasm-compiler.h"
-
Mircea Trofin 2016/07/22 00:15:58 why remove this space?
namespace v8 {
namespace internal {
namespace wasm {
@@ -1030,8 +1029,9 @@ class WasmFullDecoder : public WasmDecoder {
BUILD(JITSingleFunction, base.node, length.node, index.node,
operand.sig_index, operand.sig, position());
Push(kAstI32, call);
- break;
}
+ len = 1 + operand.length;
+ break;
}
}
default:

Powered by Google App Engine
This is Rietveld 408576698