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

Unified Diff: runtime/vm/intermediate_language.cc

Issue 10538064: Implement inlined LoadIndexed operation for arrays on x64. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
Index: runtime/vm/intermediate_language.cc
diff --git a/runtime/vm/intermediate_language.cc b/runtime/vm/intermediate_language.cc
index 7db2a04d3acbb8d7ee9effe09055b40626a7cfa7..f7219376616ce5471649742ee711e4fca0339f5d 100644
--- a/runtime/vm/intermediate_language.cc
+++ b/runtime/vm/intermediate_language.cc
@@ -422,6 +422,11 @@ RawAbstractType* NativeCallComp::StaticType() const {
}
+RawAbstractType* LoadIndexedComp::StaticType() const {
+ return Type::DynamicType();
+}
+
+
RawAbstractType* StoreIndexedComp::StaticType() const {
UNREACHABLE();
return AbstractType::null();

Powered by Google App Engine
This is Rietveld 408576698