aboutsummaryrefslogtreecommitdiff
path: root/benchmarks/bc/postfix_incdec.bc
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/bc/postfix_incdec.bc')
-rw-r--r--benchmarks/bc/postfix_incdec.bc11
1 files changed, 0 insertions, 11 deletions
diff --git a/benchmarks/bc/postfix_incdec.bc b/benchmarks/bc/postfix_incdec.bc
deleted file mode 100644
index 2437f4c4c820..000000000000
--- a/benchmarks/bc/postfix_incdec.bc
+++ /dev/null
@@ -1,11 +0,0 @@
-#! /usr/bin/bc -lq
-
-max = 1000000
-
-for (i = 0; i < max; ++i) {
- print "i++\ni--\n"
-}
-
-print "halt\n"
-
-halt