Commit 18fdbc3f authored by Ng Zhi An's avatar Ng Zhi An Committed by V8 LUCI CQ

[diagnostics] Fix -Wshadow

Bug: v8:12244,v8:12245
Change-Id: Ieb3129ec1e66024b5431a1deb231529b94c740f2
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3273894Reviewed-by: 's avatarAndreas Haas <ahaas@chromium.org>
Commit-Queue: Zhi An Ng <zhin@chromium.org>
Cr-Commit-Position: refs/heads/main@{#77853}
parent b4d5faeb
...@@ -174,8 +174,8 @@ std::vector<bool> BasicBlockProfiler::GetCoverageBitmap(Isolate* isolate) { ...@@ -174,8 +174,8 @@ std::vector<bool> BasicBlockProfiler::GetCoverageBitmap(Isolate* isolate) {
for (int i = 0; i < list_length; ++i) { for (int i = 0; i < list_length; ++i) {
BasicBlockProfilerData data( BasicBlockProfilerData data(
OnHeapBasicBlockProfilerData::cast(list.Get(i))); OnHeapBasicBlockProfilerData::cast(list.Get(i)));
for (size_t i = 0; i < data.n_blocks(); ++i) { for (size_t j = 0; j < data.n_blocks(); ++j) {
out.push_back(data.counts_[i] > 0); out.push_back(data.counts_[j] > 0);
} }
} }
return out; return out;
......
...@@ -1956,7 +1956,6 @@ int DisassemblerX64::TwoByteOpcodeInstruction(byte* data) { ...@@ -1956,7 +1956,6 @@ int DisassemblerX64::TwoByteOpcodeInstruction(byte* data) {
} else if (opcode == 0xD7) { } else if (opcode == 0xD7) {
current += PrintOperands("pmovmskb", OPER_XMMREG_OP_ORDER, current); current += PrintOperands("pmovmskb", OPER_XMMREG_OP_ORDER, current);
} else { } else {
const char* mnemonic;
#define SSE2_CASE(instruction, notUsed1, notUsed2, opcode) \ #define SSE2_CASE(instruction, notUsed1, notUsed2, opcode) \
case 0x##opcode: \ case 0x##opcode: \
mnemonic = "" #instruction; \ mnemonic = "" #instruction; \
......
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