Ignore:
Timestamp:
May 8, 2009, 4:30:32 AM (16 years ago)
Author:
[email protected]
Message:

2009-05-08 Gavin Barraclough <[email protected]>

Rubber stamped by Oliver Hunt.

Removing an empty constructor and an uncalled, empty function seems to be a
pretty solid 1% regeression on my machine, so I'm going to put them back.
Um. Yeah, this this pretty pointles and makes no sense at all. I officially
lose the will to live in 3... 2...

  • bytecode/SamplingTool.cpp: (JSC::SamplingTool::notifyOfScope):
  • bytecode/SamplingTool.h: (JSC::SamplingTool::~SamplingTool):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/bytecode/SamplingTool.h

    r43395 r43397  
    200200        }
    201201
     202        ~SamplingTool()
     203        {
    202204#if ENABLE(CODEBLOCK_SAMPLING)
    203         ~SamplingTool()
    204         {
    205205            deleteAllValues(*m_scopeSampleMap);
    206         }
    207 
    208         void notifyOfScope(ScopeNode* scope);
    209 #endif
     206#endif
     207        }
    210208
    211209        void setup();
    212210        void dump(ExecState*);
     211
     212        void notifyOfScope(ScopeNode* scope);
    213213
    214214        void sample(CodeBlock* codeBlock, Instruction* vPC)
Note: See TracChangeset for help on using the changeset viewer.