Commit 304572c9 authored by bradnelson's avatar bradnelson Committed by Commit bot

[wasm] Drop unused variables in asm-types-unittest.

BUG= https://bugs.chromium.org/p/v8/issues/detail?id=4203
TEST= cctest/asmjs/test-asm-typer
LOG=N
R=jpp@chromium.org

Review-Url: https://codereview.chromium.org/2147113002
Cr-Commit-Position: refs/heads/master@{#37733}
parent a6ffe8ef
......@@ -266,8 +266,8 @@ TEST_F(AsmTypeTest, IsExactly) {
}
bool FunctionsWithSameSignature(AsmType* a, AsmType* b) {
if (auto* func_a = a->AsFunctionType()) {
if (auto* func_b = b->AsFunctionType()) {
if (a->AsFunctionType()) {
if (b->AsFunctionType()) {
return a->IsA(b);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment