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

Unified Diff: runtime/vm/intermediate_language.cc

Issue 10933039: Make int an abstract class. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Now with correct base. Created 8 years, 3 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 10292764b10394e5f6bf687ca695fda55bd1953c..bb971bce3c60597a30afe6c3a564f18514d1f85b 100644
--- a/runtime/vm/intermediate_language.cc
+++ b/runtime/vm/intermediate_language.cc
@@ -1033,7 +1033,7 @@ RawAbstractType* CheckStackOverflowInstr::CompileType() const {
RawAbstractType* BinarySmiOpInstr::CompileType() const {
- return (op_kind() == Token::kSHL) ? Type::IntInterface() : Type::SmiType();
+ return (op_kind() == Token::kSHL) ? Type::IntType() : Type::SmiType();
}

Powered by Google App Engine
This is Rietveld 408576698