Roll Clang from 637e9bc0f763 to 26697f4d07eb
TEST=ci Change-Id: I3087eac61590edd0aa79e940146345d6370ff39f Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/493840 Commit-Queue: Ryan Macnak <rmacnak@google.com> Reviewed-by: Ryan Macnak <rmacnak@google.com> Reviewed-by: Alexander Aprelev <aam@google.com>
This commit is contained in:
committed by
Commit Queue
parent
8d19f6b2ed
commit
ed2bca33a3
@@ -146,8 +146,7 @@ Dart_Handle SetupDartIoLibrary(const DartIoSettings& settings) {
|
||||
#if !defined(PRODUCT)
|
||||
auto dart_type =
|
||||
DartUtils::GetDartType(DartUtils::kIOLibURL, "_NetworkProfiling");
|
||||
ASSIGN_OR_RETURN(
|
||||
Dart_Handle network_profiling_type, dart_type);
|
||||
ASSIGN_OR_RETURN(Dart_Handle network_profiling_type, dart_type);
|
||||
RETURN_IF_ERROR(Dart_Invoke(
|
||||
network_profiling_type,
|
||||
DartUtils::NewString("_registerServiceExtension"), 0, nullptr));
|
||||
|
||||
+1
-1
@@ -231,7 +231,7 @@ class LocalVariable : public ZoneObject {
|
||||
// in the stack frame.
|
||||
using IsCapturedBit = BitField<uint32_t, bool, IsFinalBit::kNextBit, 1>;
|
||||
using IsInvisibleBit = BitField<uint32_t, bool, IsCapturedBit::kNextBit, 1>;
|
||||
using IsLateBit = BitField<uint32_t, bool, IsInvisibleBit ::kNextBit, 1>;
|
||||
using IsLateBit = BitField<uint32_t, bool, IsInvisibleBit::kNextBit, 1>;
|
||||
|
||||
enum CovarianceMode {
|
||||
kNotCovariant,
|
||||
|
||||
Reference in New Issue
Block a user