| Index: src/runtime.h
|
| ===================================================================
|
| --- src/runtime.h (revision 4966)
|
| +++ src/runtime.h (working copy)
|
| @@ -599,34 +599,6 @@
|
| };
|
|
|
|
|
| -class InlineRuntimeFunctionsTable {
|
| - public:
|
| - enum {
|
| -#define LUT_ENTRY(name, argc, resize) __##name,
|
| - INLINE_RUNTIME_FUNCTION_LIST(LUT_ENTRY)
|
| - kInlineRuntimeFunctionsTableSize
|
| -#undef LUT_ENTRY
|
| - };
|
| -
|
| - struct Entry {
|
| - void (CodeGenerator::*method)(ZoneList<Expression*>*);
|
| - const char* name;
|
| - int nargs;
|
| - };
|
| -
|
| - Entry* entries() { return entries_; }
|
| -
|
| - private:
|
| - InlineRuntimeFunctionsTable();
|
| -
|
| - Entry entries_[kInlineRuntimeFunctionsTableSize];
|
| -
|
| - friend class Isolate;
|
| -
|
| - DISALLOW_COPY_AND_ASSIGN(InlineRuntimeFunctionsTable);
|
| -};
|
| -
|
| -
|
| } } // namespace v8::internal
|
|
|
| #endif // V8_RUNTIME_H_
|
|
|