Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(226)

Side by Side Diff: runtime/vm/optimizer.h

Issue 2904543002: Fix misoptimization of 'is' test (Closed)
Patch Set: Remove inadvertent change Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 #ifndef RUNTIME_VM_OPTIMIZER_H_
6 #define RUNTIME_VM_OPTIMIZER_H_
7
8 #include "vm/globals.h"
9
10 #include "vm/growable_array.h"
11
12 namespace dart {
13
14 class Optimizer {
15 public:
16 static bool TryExpandTestCidsResult(ZoneGrowableArray<intptr_t>* results,
Vyacheslav Egorov (Google) 2017/05/23 16:00:32 Maybe this function name needs to reflect more clo
erikcorry 2017/05/24 13:37:16 Done.
17 const AbstractType& type,
18 bool int_type_only);
19 };
20
21 } // namespace dart
22
23 #endif // RUNTIME_VM_OPTIMIZER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698