Commit 62fee3b6 authored by Jakob Kummerow's avatar Jakob Kummerow Committed by Commit Bot

[compiler] Add missing "break" in switch statement

AFAICT this doesn't currently change observable behavior, but should
be fixed nonetheless.

Change-Id: I1dce90ae5bcad39d7d54dddd2559bd7f7ccbb095
Reviewed-on: https://chromium-review.googlesource.com/648354Reviewed-by: 's avatarLeszek Swirski <leszeks@chromium.org>
Reviewed-by: 's avatarBen Titzer <titzer@chromium.org>
Commit-Queue: Jakob Kummerow <jkummerow@chromium.org>
Cr-Commit-Position: refs/heads/master@{#47835}
parent 9ab9fbf1
......@@ -159,6 +159,7 @@ void UpdateInLiveness(Bytecode bytecode, BytecodeLivenessState& in_liveness,
in_liveness.MarkRegisterLive(r.index() + j);
}
}
break;
}
default:
DCHECK(!Bytecodes::IsRegisterInputOperandType(operand_types[i]));
......
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