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

Unified Diff: runtime/vm/intermediate_language.h

Issue 10559035: Implement a simple register allocator that tries to keep instruction results in registers. (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.h
diff --git a/runtime/vm/intermediate_language.h b/runtime/vm/intermediate_language.h
index a75d5cddac6abdaf730c25f99cf8ec1a0b328bfa..dd1e8f12082041aa993010b7d98ac580b09e48f5 100644
--- a/runtime/vm/intermediate_language.h
+++ b/runtime/vm/intermediate_language.h
@@ -1253,7 +1253,7 @@ class CreateArrayComp : public TemplateComputation<1> {
Value* element_type() const { return inputs_[0]; }
virtual intptr_t InputCount() const;
- virtual Value* InputAt(intptr_t i) const { return ElementAt(i); }
+ virtual Value* InputAt(intptr_t i) const;
virtual void PrintOperandsTo(BufferFormatter* f) const;

Powered by Google App Engine
This is Rietveld 408576698