Changeset 174294 in webkit for trunk/Source/JavaScriptCore/bytecompiler
- Timestamp:
- Oct 3, 2014, 2:46:14 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecompiler/BytecodeGenerator.cpp
r174226 r174294 1914 1914 if (m_codeBlock->usesArguments() && m_codeBlock->numParameters() != 1 && !isStrictMode()) { 1915 1915 emitOpcode(op_tear_off_arguments); 1916 instructions().append( m_codeBlock->argumentsRegister().offset());1916 instructions().append(unmodifiedArgumentsRegister(m_codeBlock->argumentsRegister()).offset()); 1917 1917 instructions().append(m_lexicalEnvironmentRegister ? m_lexicalEnvironmentRegister->index() : emitLoad(0, JSValue())->index()); 1918 1918 }
Note:
See TracChangeset
for help on using the changeset viewer.