From f502d4c8ad41ed32cc59a6a4b962db451cc8b135 Mon Sep 17 00:00:00 2001 From: Stephen Williams Date: Thu, 20 Nov 2008 21:01:33 -0800 Subject: [PATCH] Specify support off by default. The specify support has some interesting bugs, and anyhow is rarely used. Leave it OFF by default. --- driver/iverilog.man | 2 +- driver/main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/driver/iverilog.man b/driver/iverilog.man index 9db60b4d8..57d9e5ab1 100644 --- a/driver/iverilog.man +++ b/driver/iverilog.man @@ -68,7 +68,7 @@ other tools. Enable or disable (default) support for Verilog-AMS. .TP 8 .B -gspecify\fI|\fP-gno-specify -Enable (default) or disable specify block support. When enabled, +Enable or disable (default) specify block support. When enabled, specify block code is elaborated. When disabled, specify blocks are parsed but ignored. Specify blocks are commonly not needed for RTL simulation, and in fact can hurt performance of the diff --git a/driver/main.c b/driver/main.c index e11045794..3b049f278 100644 --- a/driver/main.c +++ b/driver/main.c @@ -108,7 +108,7 @@ const char*targ = "vvp"; const char*depfile = 0; const char*generation = "2005"; -const char*gen_specify = "specify"; +const char*gen_specify = "no-specify"; const char*gen_xtypes = "xtypes"; const char*gen_icarus = "icarus-misc"; const char*gen_io_range_error = "io-range-error";