Commit 05569df6 authored by Michaël Zasso's avatar Michaël Zasso Committed by Commit Bot

[compiler] Correctly initialize boolean value

This gets rid of a bunch of compiler warnings with MSVC.

Change-Id: I73440f0d203603fe39a2408d2b9cc647700aa5fc
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1893334Reviewed-by: 's avatarBill Budge <bbudge@chromium.org>
Commit-Queue: Michaël Zasso <mic.besace@gmail.com>
Cr-Commit-Position: refs/heads/master@{#64692}
parent 07437481
......@@ -1419,7 +1419,7 @@ class V8_EXPORT_PRIVATE InstructionBlock final
const RpoNumber loop_end_;
int32_t code_start_; // start index of arch-specific code.
int32_t code_end_ = -1; // end index of arch-specific code.
const bool deferred_ = -1; // Block contains deferred code.
const bool deferred_; // Block contains deferred code.
const bool handler_; // Block is a handler entry point.
bool switch_target_ = false;
bool alignment_ = false; // insert alignment before this block
......
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