summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Graey <maxgraey@gmail.com>2020-10-19 20:19:33 +0300
committerGitHub <noreply@github.com>2020-10-19 10:19:33 -0700
commit770a042535cd901902cd23410d9a9488dfc020e2 (patch)
tree8b7f5347c1e1ffc78995eebcfba3d0fe416b6765
parente382c577bc7df6f26933a7b7627757ad32bca842 (diff)
downloadbinaryen-770a042535cd901902cd23410d9a9488dfc020e2.tar.gz
binaryen-770a042535cd901902cd23410d9a9488dfc020e2.tar.bz2
binaryen-770a042535cd901902cd23410d9a9488dfc020e2.zip
Remove process_optimize_instructions.py which is no longer needed after #3200 (#3258)
-rwxr-xr-xscripts/process_optimize_instructions.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/scripts/process_optimize_instructions.py b/scripts/process_optimize_instructions.py
deleted file mode 100755
index f10e66a8b..000000000
--- a/scripts/process_optimize_instructions.py
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/python
-
-import os
-
-root = os.path.dirname(os.path.dirname(__file__))
-
-infile = os.path.join(root, 'src', 'passes', 'OptimizeInstructions.wast')
-outfile = os.path.join(root, 'src', 'passes',
- 'OptimizeInstructions.wast.processed')
-
-out = open(outfile, 'w')
-
-for line in open(infile):
- out.write('"' + line.strip().replace('"', '\\"') + '\\n"\n')
-
-out.close()