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

Unified Diff: vm/intermediate_language.cc

Issue 10826097: Use explicit push-argument for InstanceSetter instruction. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Fix syntax error Created 8 years, 5 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: vm/intermediate_language.cc
===================================================================
--- vm/intermediate_language.cc (revision 10115)
+++ vm/intermediate_language.cc (working copy)
@@ -766,7 +766,9 @@
RawAbstractType* InstanceSetterComp::StaticType() const {
- return value()->StaticType();
+ // This computation does not have a result value.
+ UNREACHABLE();
+ return AbstractType::null();
}

Powered by Google App Engine
This is Rietveld 408576698