Commit 474e6a3d authored by jkummerow's avatar jkummerow Committed by Commit bot

[arm64] Fix i/d cache line size confusion typo

BUG=chromium:593867
LOG=y

Review URL: https://codereview.chromium.org/1783343002

Cr-Commit-Position: refs/heads/master@{#34719}
parent dd0e6ca0
......@@ -656,8 +656,8 @@ CPU::CPU()
}
CacheLineSizes sizes;
icache_line_size_ = sizes.dcache_line_size();
dcache_line_size_ = sizes.icache_line_size();
icache_line_size_ = sizes.icache_line_size();
dcache_line_size_ = sizes.dcache_line_size();
#elif V8_HOST_ARCH_PPC
......
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