| Index: src/code-stubs.h
|
| diff --git a/src/code-stubs.h b/src/code-stubs.h
|
| index 3ac51e7358e133b89e14b14b1b9df41c973ceb6f..03849aae5c600e71ef47b69719dcada0ef690fc8 100644
|
| --- a/src/code-stubs.h
|
| +++ b/src/code-stubs.h
|
| @@ -945,11 +945,10 @@ class LoadFieldStub: public HandlerStub {
|
| bool inobject,
|
| int index,
|
| Representation representation) {
|
| - bool unboxed_double = FLAG_track_double_fields && representation.IsDouble();
|
| bit_field_ = KindBits::encode(kind)
|
| | InobjectBits::encode(inobject)
|
| | IndexBits::encode(index)
|
| - | UnboxedDoubleBits::encode(unboxed_double);
|
| + | UnboxedDoubleBits::encode(representation.IsDouble());
|
| }
|
|
|
| private:
|
|
|