From 41386e9cb918eed93b3f13648cbef387e371e451 Mon Sep 17 00:00:00 2001 From: Lorry Tar Creator Date: Wed, 20 May 2015 09:56:07 +0000 Subject: webkitgtk-2.4.9 --- Source/JavaScriptCore/bytecode/OperandsInlines.h | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'Source/JavaScriptCore/bytecode/OperandsInlines.h') diff --git a/Source/JavaScriptCore/bytecode/OperandsInlines.h b/Source/JavaScriptCore/bytecode/OperandsInlines.h index c9dee88c7..74ad60bc1 100644 --- a/Source/JavaScriptCore/bytecode/OperandsInlines.h +++ b/Source/JavaScriptCore/bytecode/OperandsInlines.h @@ -47,22 +47,6 @@ void Operands::dumpInContext(PrintStream& out, DumpContext* context) } } -template -void Operands::dump(PrintStream& out) const -{ - CommaPrinter comma(" "); - for (size_t argumentIndex = numberOfArguments(); argumentIndex--;) { - if (Traits::isEmptyForDump(argument(argumentIndex))) - continue; - out.print(comma, "arg", argumentIndex, ":", argument(argumentIndex)); - } - for (size_t localIndex = 0; localIndex < numberOfLocals(); ++localIndex) { - if (Traits::isEmptyForDump(local(localIndex))) - continue; - out.print(comma, "loc", localIndex, ":", local(localIndex)); - } -} - } // namespace JSC #endif // OperandsInlines_h -- cgit v1.2.1