summary refs log tree commit diff stats
path: root/tests/toptions.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/toptions.nim')
-rwxr-xr-xtests/toptions.nim22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/toptions.nim b/tests/toptions.nim
deleted file mode 100755
index 95bb5cfbc..000000000
--- a/tests/toptions.nim
+++ /dev/null
@@ -1,22 +0,0 @@
-# Converted by Pas2mor v1.54

-# Used command line arguments:

-# -m -q -o bootstrap\options.mor options.pas

-#

-

-type

-  # please make sure we have under 32 options (improves code efficiency!)

-  TOption = enum

-    optNone, optForceFullMake, optBoehmGC, optRefcGC, optRangeCheck,

-    optBoundsCheck, optOverflowCheck, optNilCheck, optAssert, optLineDir,

-    optWarns, optHints, optDeadCodeElim, optListCmd, optCompileOnly,

-    optSafeCode,             # only allow safe code

-    optStyleCheck, optOptimizeSpeed, optOptimizeSize, optGenDynLib,

-    optGenGuiApp, optStackTrace

-

-  TOptionset = set[TOption]

-

-var

-  gOptions: TOptionset = {optRefcGC, optRangeCheck, optBoundsCheck,

-    optOverflowCheck, optAssert, optWarns, optHints, optLineDir, optStackTrace}

-  compilerArgs: int

-  gExitcode: int8