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

Unified Diff: runtime/vm/intrinsifier_mips.cc

Issue 1965493004: Canonicalize generic types in an isolate specific hash table (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: address-code-review-comments Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: runtime/vm/intrinsifier_mips.cc
diff --git a/runtime/vm/intrinsifier_mips.cc b/runtime/vm/intrinsifier_mips.cc
index 2398a7b957d512cc3a278c788e4733e2fa33f164..bc82935b08dab2b1a8e2b59694bb9199d9811ef1 100644
--- a/runtime/vm/intrinsifier_mips.cc
+++ b/runtime/vm/intrinsifier_mips.cc
@@ -1664,7 +1664,7 @@ void Intrinsifier::ObjectRuntimeType(Assembler* assembler) {
__ lhu(T1, FieldAddress(T2, Class::num_type_arguments_offset()));
__ BranchNotEqual(T1, Immediate(0), &fall_through);
- __ lw(V0, FieldAddress(T2, Class::canonical_types_offset()));
+ __ lw(V0, FieldAddress(T2, Class::canonical_type_offset()));
__ BranchEqual(V0, Object::null_object(), &fall_through);
__ Ret();

Powered by Google App Engine
This is Rietveld 408576698