Commit b84baffb authored by Leszek Swirski's avatar Leszek Swirski Committed by Commit Bot

[tools] Fix whitespace

Fix some trailing whitespace issues in files in the tools directory.

Change-Id: If9e9b1dab1d6f521e20619a2a1d093749f0528d9
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2671660
Auto-Submit: Leszek Swirski <leszeks@chromium.org>
Reviewed-by: 's avatarCamillo Bruni <cbruni@chromium.org>
Commit-Queue: Leszek Swirski <leszeks@chromium.org>
Cr-Commit-Position: refs/heads/master@{#72498}
parent b5d4eb47
...@@ -102,7 +102,7 @@ fi ...@@ -102,7 +102,7 @@ fi
# -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_PROJECTS=clang \ # -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_PROJECTS=clang \
# -DLLVM_ENABLE_Z3_SOLVER=OFF "${LLVM_PROJECT_DIR}/llvm" # -DLLVM_ENABLE_Z3_SOLVER=OFF "${LLVM_PROJECT_DIR}/llvm"
# MACOSX_DEPLOYMENT_TARGET=10.5 ninja -j"${NUM_JOBS}" # MACOSX_DEPLOYMENT_TARGET=10.5 ninja -j"${NUM_JOBS}"
# #
# # Strip the clang binary. # # Strip the clang binary.
# STRIP_FLAGS= # STRIP_FLAGS=
# if [ "${OS}" = "Darwin" ]; then # if [ "${OS}" = "Darwin" ]; then
......
...@@ -76,7 +76,7 @@ found in the LICENSE file. --> ...@@ -76,7 +76,7 @@ found in the LICENSE file. -->
font-weight: 400; font-weight: 400;
} }
.panelCloserInput:checked ~ h3 { .panelCloserInput:checked ~ h3 {
display: inherit; display: inherit;
flex: 1; flex: 1;
writing-mode: unset; writing-mode: unset;
......
...@@ -418,7 +418,7 @@ export class TickProcessor extends LogReader { ...@@ -418,7 +418,7 @@ export class TickProcessor extends LogReader {
print(`Statistical profiling result from ${this.lastLogFileName_}` + print(`Statistical profiling result from ${this.lastLogFileName_}` +
`, (${this.ticks_.total} ticks, ${this.ticks_.unaccounted} unaccounted, ` + `, (${this.ticks_.total} ticks, ${this.ticks_.unaccounted} unaccounted, ` +
`${this.ticks_.excluded} excluded).`); `${this.ticks_.excluded} excluded).`);
if (this.ticks_.total == 0) return; if (this.ticks_.total == 0) return;
...@@ -607,7 +607,7 @@ class CppEntriesProvider { ...@@ -607,7 +607,7 @@ class CppEntriesProvider {
lastUnknownSize.start < funcInfo.start) { lastUnknownSize.start < funcInfo.start) {
// Try to update lastUnknownSize based on new entries start position. // Try to update lastUnknownSize based on new entries start position.
lastUnknownSize.end = funcInfo.start; lastUnknownSize.end = funcInfo.start;
if ((!lastAdded || if ((!lastAdded ||
!this.inRange(lastUnknownSize, lastAdded.start, lastAdded.end)) && !this.inRange(lastUnknownSize, lastAdded.start, lastAdded.end)) &&
this.inRange(lastUnknownSize, libStart, libEnd)) { this.inRange(lastUnknownSize, libStart, libEnd)) {
processorFunc( processorFunc(
......
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