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

Unified Diff: runtime/vm/stub_code.h

Issue 9939003: Use null type argument vector instead of vector of Dynamic for a generic raw (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 9 months 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
Index: runtime/vm/stub_code.h
===================================================================
--- runtime/vm/stub_code.h (revision 6004)
+++ runtime/vm/stub_code.h (working copy)
@@ -145,8 +145,10 @@
static RawCode* GetAllocationStubForClass(const Class& cls);
static RawCode* GetAllocationStubForClosure(const Function& func);
+ static const intptr_t kNoInstantiator = 0;
+
private:
- static const int kStubCodeSize = 4 * KB;
+ static const intptr_t kStubCodeSize = 4 * KB;
#define STUB_CODE_GENERATE(name) \
static void Generate##name##Stub(Assembler* assembler);

Powered by Google App Engine
This is Rietveld 408576698