summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/bytecode/OperandsInlines.h
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@lorry>2016-04-10 09:28:39 +0000
committerLorry Tar Creator <lorry-tar-importer@lorry>2016-04-10 09:28:39 +0000
commit32761a6cee1d0dee366b885b7b9c777e67885688 (patch)
treed6bec92bebfb216f4126356e55518842c2f476a1 /Source/JavaScriptCore/bytecode/OperandsInlines.h
parenta4e969f4965059196ca948db781e52f7cfebf19e (diff)
downloadWebKitGtk-tarball-32761a6cee1d0dee366b885b7b9c777e67885688.tar.gz
webkitgtk-2.4.11webkitgtk-2.4.11
Diffstat (limited to 'Source/JavaScriptCore/bytecode/OperandsInlines.h')
-rw-r--r--Source/JavaScriptCore/bytecode/OperandsInlines.h16
1 files changed, 0 insertions, 16 deletions
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<T, Traits>::dumpInContext(PrintStream& out, DumpContext* context)
}
}
-template<typename T, typename Traits>
-void Operands<T, Traits>::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