X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fibex%2Fcore%2FMain.java;h=0a4ff9107c684b50b764fec27c3e5104529ba669;hb=a9e4fbe550f9618ebef864db11d4b249578db9dd;hp=3a0ec174b4cf14f86a789f8f94431e1d7629d389;hpb=b0ec2e1d6c3bd35205dfffc6893f01157aef2ced;p=org.ibex.core.git diff --git a/src/org/ibex/core/Main.java b/src/org/ibex/core/Main.java index 3a0ec17..0a4ff91 100644 --- a/src/org/ibex/core/Main.java +++ b/src/org/ibex/core/Main.java @@ -35,7 +35,7 @@ public class Main { System.err.println(" -l user@host email log to user@host"); System.err.println(" -l host:port emit log to TCP socket"); System.err.println(" -l write log to a file on disk"); - System.err.println(" -a check assertions"); + //System.err.println(" -a check assertions"); System.err.println(" -w reserved for libibex"); System.err.println(" -p dump profiling information [not yet supported]"); Runtime.getRuntime().exit(-1); @@ -45,7 +45,8 @@ public class Main { int startargs = 0; while (true) { if (startargs > args.length - 1) printUsage(); - else if (args[startargs].equals("-a")) JS.checkAssertions = true; + // FEATURE: This should be enabled at the parser level - there shouldn't even be an assert bytecode + /*else if (args[startargs].equals("-a")) JS.checkAssertions = true;*/ else if (args[startargs].equals("-l")) { startargs++; StringTokenizer opts = new StringTokenizer(args[startargs], ",");