Index: src/platform.h |
diff --git a/src/platform.h b/src/platform.h |
index a34661505564665407a814a43287b7309605707b..e23abfc375de08380991ea1dee918b45298f3bf2 100644 |
--- a/src/platform.h |
+++ b/src/platform.h |
@@ -492,9 +492,9 @@ class Socket { |
class TickSample { |
public: |
TickSample() : pc(0), sp(0), fp(0), state(OTHER) {} |
- unsigned int pc; // Instruction pointer. |
- unsigned int sp; // Stack pointer. |
- unsigned int fp; // Frame pointer. |
+ uintptr_t pc; // Instruction pointer. |
+ uintptr_t sp; // Stack pointer. |
+ uintptr_t fp; // Frame pointer. |
StateTag state; // The state of the VM. |
static const int kMaxFramesCount = 100; |
EmbeddedVector<Address, kMaxFramesCount> stack; // Call stack. |