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

Unified Diff: src/wasm/wasm-opcodes.h

Issue 2049513003: [wasm] Support undefined indirect table entries, behind a flag. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: [wasm] Patching in the change to have only one runtime check, instead of two. Created 4 years, 6 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/wasm-opcodes.h
diff --git a/src/wasm/wasm-opcodes.h b/src/wasm/wasm-opcodes.h
index b29e4a0fea83d8b9f9d9528b7ad20d7c7cc4b1d1..0b26423e12c7534bcc315e9aa6a643a0a002dffa 100644
--- a/src/wasm/wasm-opcodes.h
+++ b/src/wasm/wasm-opcodes.h
@@ -468,13 +468,13 @@ enum WasmOpcode {
// The reason for a trap.
#define FOREACH_WASM_TRAPREASON(V) \
- V(TrapUnreachable) \
- V(TrapMemOutOfBounds) \
- V(TrapDivByZero) \
- V(TrapDivUnrepresentable) \
- V(TrapRemByZero) \
- V(TrapFloatUnrepresentable) \
- V(TrapFuncInvalid) \
+ V(TrapUnreachable) \
+ V(TrapMemOutOfBounds) \
+ V(TrapDivByZero) \
+ V(TrapDivUnrepresentable) \
+ V(TrapRemByZero) \
+ V(TrapFloatUnrepresentable) \
+ V(TrapFuncInvalid) \
V(TrapFuncSigMismatch)
enum TrapReason {

Powered by Google App Engine
This is Rietveld 408576698