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

Unified Diff: runtime/vm/intermediate_language.h

Issue 252333002: Use GPRs for mints (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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/intermediate_language.h
diff --git a/runtime/vm/intermediate_language.h b/runtime/vm/intermediate_language.h
index a266402f8f6989609cc3cbcfcb3a2e28bb5b70b4..b1b982ca071a6fc3535c7db4ebb337dff5d2d5ef 100644
--- a/runtime/vm/intermediate_language.h
+++ b/runtime/vm/intermediate_language.h
@@ -1779,7 +1779,8 @@ class Definition : public Instruction {
void ClearSSATempIndex() { ssa_temp_index_ = -1; }
bool HasPairRepresentation() const {
return (representation() == kPairOfTagged) ||
- (representation() == kPairOfUnboxedDouble);
+ (representation() == kPairOfUnboxedDouble) ||
+ (representation() == kUnboxedMint);
}
// Compile time type of the definition, which may be requested before type

Powered by Google App Engine
This is Rietveld 408576698