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

Unified Diff: runtime/vm/object.h

Issue 8803025: Fix linux build (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 9 years 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 | « runtime/vm/debugger.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.h
===================================================================
--- runtime/vm/object.h (revision 2087)
+++ runtime/vm/object.h (working copy)
@@ -1731,7 +1731,7 @@
intptr_t Length() const;
- intptr_t PC(intptr_t index) const;
+ uword PC(intptr_t index) const;
PcDescriptors::Kind DescriptorKind(intptr_t index) const;
const char* KindAsStr(intptr_t index) const;
intptr_t NodeId(intptr_t index) const;
@@ -1739,7 +1739,7 @@
intptr_t TryIndex(intptr_t index) const;
void AddDescriptor(intptr_t index,
- intptr_t pc,
+ uword pc,
PcDescriptors::Kind kind,
intptr_t node_id,
intptr_t token_index,
@@ -1778,7 +1778,7 @@
kNumberOfEntries
};
- void SetPC(intptr_t index, intptr_t value) const;
+ void SetPC(intptr_t index, uword value) const;
void SetKind(intptr_t index, PcDescriptors::Kind kind) const;
void SetNodeId(intptr_t index, intptr_t value) const;
void SetTokenIndex(intptr_t index, intptr_t value) const;
« no previous file with comments | « runtime/vm/debugger.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698