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

Unified Diff: runtime/vm/assembler_mips.h

Issue 1662853002: Fix build: (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/assembler_mips.h
diff --git a/runtime/vm/assembler_mips.h b/runtime/vm/assembler_mips.h
index e075dd3bd4a013ef691ef69adb2901eb05d8106c..382d8339393e525595da77b3473bca7aa114bbde 100644
--- a/runtime/vm/assembler_mips.h
+++ b/runtime/vm/assembler_mips.h
@@ -158,10 +158,11 @@ class Condition : public ValueObject {
kImmSize = 16,
};
- class LeftBits : public BitField<Register, kLeftPos, kLeftSize> {};
- class RightBits : public BitField<Register, kRightPos, kRightSize> {};
- class RelOpBits : public BitField<RelationOperator, kRelOpPos, kRelOpSize> {};
- class ImmBits : public BitField<uint16_t, kImmPos, kImmSize> {};
+ class LeftBits : public BitField<uword, Register, kLeftPos, kLeftSize> {};
+ class RightBits : public BitField<uword, Register, kRightPos, kRightSize> {};
+ class RelOpBits :
+ public BitField<uword, RelationOperator, kRelOpPos, kRelOpSize> {};
+ class ImmBits : public BitField<uword, uint16_t, kImmPos, kImmSize> {};
Register left() const { return LeftBits::decode(bits_); }
Register right() const { return RightBits::decode(bits_); }
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698