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

Unified Diff: src/serialize.cc

Issue 6756029: Clean up runtime functions. (Closed)
Patch Set: Created 9 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
« src/serialize.h ('K') | « src/serialize.h ('k') | src/stub-cache.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/serialize.cc
diff --git a/src/serialize.cc b/src/serialize.cc
index 12e9613e3e1f7ffa3ecd57009ee6faef9f59779a..a08378851a55eec46d8bb5cc826e21a321e1fd53 100644
--- a/src/serialize.cc
+++ b/src/serialize.cc
@@ -131,7 +131,7 @@ void ExternalReferenceTable::AddFromId(TypeCode type,
address = ref.address();
break;
}
- case RUNTIME_FUNCTION: {
+ case RUNTIME_FUNCTION_: {
ExternalReference ref(static_cast<Runtime::FunctionId>(id), isolate);
address = ref.address();
break;
@@ -208,7 +208,7 @@ void ExternalReferenceTable::PopulateTable(Isolate* isolate) {
// Runtime functions
#define RUNTIME_ENTRY(name, nargs, ressize) \
- { RUNTIME_FUNCTION, \
+ { RUNTIME_FUNCTION_, \
Runtime::k##name, \
"Runtime::" #name },
« src/serialize.h ('K') | « src/serialize.h ('k') | src/stub-cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698