From 65f03d4f644ce73618e5f4f50dd694b26f55ae12 Mon Sep 17 00:00:00 2001 From: Ben Murdoch Date: Fri, 13 May 2011 16:23:25 +0100 Subject: Merge WebKit at r75993: Initial merge by git. Change-Id: I602bbdc3974787a3b0450456a30a7868286921c3 --- Source/JavaScriptCore/bytecode/CodeBlock.cpp | 5 ----- Source/JavaScriptCore/bytecode/Opcode.h | 1 - 2 files changed, 6 deletions(-) (limited to 'Source/JavaScriptCore/bytecode') diff --git a/Source/JavaScriptCore/bytecode/CodeBlock.cpp b/Source/JavaScriptCore/bytecode/CodeBlock.cpp index cbae990..f3f5f27 100644 --- a/Source/JavaScriptCore/bytecode/CodeBlock.cpp +++ b/Source/JavaScriptCore/bytecode/CodeBlock.cpp @@ -1197,11 +1197,6 @@ void CodeBlock::dump(ExecState* exec, const Vector::const_iterator& printf("[%4d] throw_reference_error\t %s\n", location, constantName(exec, k0, getConstant(k0)).data()); break; } - case op_throw_syntax_error: { - int k0 = (++it)->u.operand; - printf("[%4d] throw_syntax_error\t %s\n", location, constantName(exec, k0, getConstant(k0)).data()); - break; - } case op_jsr: { int retAddrDst = (++it)->u.operand; int offset = (++it)->u.operand; diff --git a/Source/JavaScriptCore/bytecode/Opcode.h b/Source/JavaScriptCore/bytecode/Opcode.h index 6c1c6b2..8082ae0 100644 --- a/Source/JavaScriptCore/bytecode/Opcode.h +++ b/Source/JavaScriptCore/bytecode/Opcode.h @@ -185,7 +185,6 @@ namespace JSC { macro(op_catch, 2) \ macro(op_throw, 2) \ macro(op_throw_reference_error, 2) \ - macro(op_throw_syntax_error, 2) \ \ macro(op_jsr, 3) \ macro(op_sret, 2) \ -- cgit v1.1