| Index: runtime/vm/assembler.h
|
| diff --git a/runtime/vm/assembler.h b/runtime/vm/assembler.h
|
| index 6ef8ae61c0af640748e2c8f3de6aeb2c4033523c..26f7b662ca5e660f3d58f2ad88047710c29cf79d 100644
|
| --- a/runtime/vm/assembler.h
|
| +++ b/runtime/vm/assembler.h
|
| @@ -91,7 +91,7 @@ class AssemblerBuffer : public ValueObject {
|
|
|
| // Return address to code at |position| bytes.
|
| uword Address(intptr_t position) {
|
| - return reinterpret_cast<uword>(contents_ + position);
|
| + return contents_ + position;
|
| }
|
|
|
| template<typename T> T Load(intptr_t position) {
|
|
|