summaryrefslogtreecommitdiff
path: root/deps/v8/test/cctest/expression-type-collector-macros.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/cctest/expression-type-collector-macros.h')
-rw-r--r--deps/v8/test/cctest/expression-type-collector-macros.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/deps/v8/test/cctest/expression-type-collector-macros.h b/deps/v8/test/cctest/expression-type-collector-macros.h
index 68d69481d9..39774f0a71 100644
--- a/deps/v8/test/cctest/expression-type-collector-macros.h
+++ b/deps/v8/test/cctest/expression-type-collector-macros.h
@@ -33,11 +33,11 @@
#define CHECK_TYPE(type) CHECK(types[index].bounds.Narrows(type));
#endif
-#define CHECK_EXPR(ekind, type) \
- CHECK_LT(index, types.size()); \
- CHECK(strcmp(#ekind, types[index].kind) == 0); \
- CHECK_EQ(depth, types[index].depth); \
- CHECK_TYPE(type); \
+#define CHECK_EXPR(ekind, type) \
+ CHECK_LT(index, types.size()); \
+ CHECK_EQ(strcmp(#ekind, types[index].kind), 0); \
+ CHECK_EQ(depth, types[index].depth); \
+ CHECK_TYPE(type); \
for (int j = (++depth, ++index, 0); j < 1 ? 1 : (--depth, 0); ++j)
#define CHECK_VAR(vname, type) \