Skip to content

Commit 16dac1c

Browse files
rmacnak-googleCommit Queue
authored andcommitted
Roll Clang from 9d7449a82b83 to 8b93f27cf7e6
TEST=build Change-Id: I4c7ad19d9b5d9a7f329516296c1cd01dd64053b5 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/456160 Commit-Queue: Ryan Macnak <[email protected]> Reviewed-by: Brian Quinlan <[email protected]>
1 parent 90cb9e4 commit 16dac1c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

DEPS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ vars = {
7575
"jsc_tag": "version:301576",
7676

7777
# https://chrome-infra-packages.appspot.com/p/fuchsia/third_party/clang
78-
"clang_version": "git_revision:9d7449a82b83ee589b8af8d6f86525727788b3b9",
78+
"clang_version": "git_revision:8b93f27cf7e6e53636db870873b53269efa3cca4",
7979

8080
# https://chrome-infra-packages.appspot.com/p/gn/gn
8181
"gn_version": "git_revision:07d3c6f4dc290fae5ca6152ebcb37d6815c411ab",

runtime/vm/compiler/backend/il.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1246,7 +1246,7 @@ GraphEntryInstr::GraphEntryInstr(const ParsedFunction& parsed_function,
12461246
ConstantInstr* GraphEntryInstr::constant_null() {
12471247
ASSERT(initial_definitions()->length() > 0);
12481248
for (intptr_t i = 0; i < initial_definitions()->length(); ++i) {
1249-
ConstantInstr* defn = (*initial_definitions())[i] -> AsConstant();
1249+
ConstantInstr* defn = (*initial_definitions())[i]->AsConstant();
12501250
if (defn != nullptr && defn->value().IsNull()) return defn;
12511251
}
12521252
UNREACHABLE();

runtime/vm/compiler/backend/il_printer.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1520,7 +1520,7 @@ void TryEntryInstr::PrintTo(BaseTextBuffer* f) const {
15201520
for (intptr_t i = 0; i < phis()->length(); ++i) {
15211521
if ((*phis())[i] == nullptr) continue;
15221522
f->AddString("\n ");
1523-
(*phis())[i] -> PrintTo(f);
1523+
(*phis())[i]->PrintTo(f);
15241524
}
15251525
f->AddString("\n}");
15261526
}

runtime/vm/regexp/regexp_ast.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ void* RegExpUnparser::VisitDisjunction(RegExpDisjunction* that, void* data) {
145145
OS::PrintErr("(|");
146146
for (intptr_t i = 0; i < that->alternatives()->length(); i++) {
147147
OS::PrintErr(" ");
148-
(*that->alternatives())[i] -> Accept(this, data);
148+
(*that->alternatives())[i]->Accept(this, data);
149149
}
150150
OS::PrintErr(")");
151151
return nullptr;
@@ -155,7 +155,7 @@ void* RegExpUnparser::VisitAlternative(RegExpAlternative* that, void* data) {
155155
OS::PrintErr("(:");
156156
for (intptr_t i = 0; i < that->nodes()->length(); i++) {
157157
OS::PrintErr(" ");
158-
(*that->nodes())[i] -> Accept(this, data);
158+
(*that->nodes())[i]->Accept(this, data);
159159
}
160160
OS::PrintErr(")");
161161
return nullptr;

0 commit comments

Comments
 (0)