| Index: src/lithium.h
|
| ===================================================================
|
| --- src/lithium.h (revision 10549)
|
| +++ src/lithium.h (working copy)
|
| @@ -61,7 +61,6 @@
|
| bool IsUnallocated() const { return kind() == UNALLOCATED; }
|
| bool IsIgnored() const { return kind() == INVALID; }
|
| bool Equals(LOperand* other) const { return value_ == other->value_; }
|
| - int VirtualRegister();
|
|
|
| void PrintTo(StringStream* stream);
|
| void ConvertTo(Kind kind, int index) {
|
| @@ -169,7 +168,7 @@
|
| return static_cast<int>(value_) >> kFixedIndexShift;
|
| }
|
|
|
| - unsigned virtual_register() const {
|
| + int virtual_register() const {
|
| return VirtualRegisterField::decode(value_);
|
| }
|
|
|
|
|