summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/dfg/DFGArithMode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/JavaScriptCore/dfg/DFGArithMode.cpp')
-rw-r--r--Source/JavaScriptCore/dfg/DFGArithMode.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/Source/JavaScriptCore/dfg/DFGArithMode.cpp b/Source/JavaScriptCore/dfg/DFGArithMode.cpp
index 84ddae192..cc9699a02 100644
--- a/Source/JavaScriptCore/dfg/DFGArithMode.cpp
+++ b/Source/JavaScriptCore/dfg/DFGArithMode.cpp
@@ -28,7 +28,6 @@
#if ENABLE(DFG_JIT)
-#include "JSCInlines.h"
#include <wtf/PrintStream.h>
namespace WTF {
@@ -55,22 +54,6 @@ void printInternal(PrintStream& out, JSC::DFG::Arith::Mode mode)
RELEASE_ASSERT_NOT_REACHED();
}
-void printInternal(PrintStream& out, JSC::DFG::Arith::RoundingMode mode)
-{
- switch (mode) {
- case JSC::DFG::Arith::RoundingMode::Int32:
- out.print("Int32");
- return;
- case JSC::DFG::Arith::RoundingMode::Int32WithNegativeZeroCheck:
- out.print("Int32WithNegativeZeroCheck");
- return;
- case JSC::DFG::Arith::RoundingMode::Double:
- out.print("Double");
- return;
- }
- RELEASE_ASSERT_NOT_REACHED();
-}
-
} // namespace WTF
#endif // ENABLE(DFG_JIT)