mirror of https://github.com/zachjs/sv2v.git
move --pass-through to the conversion option group
This commit is contained in:
parent
527b59ff12
commit
c5691d9500
|
|
@ -92,8 +92,8 @@ Preprocessing:
|
||||||
--siloed Lex input files separately, so macros from
|
--siloed Lex input files separately, so macros from
|
||||||
earlier files are not defined in later files
|
earlier files are not defined in later files
|
||||||
--skip-preprocessor Disable preprocessor
|
--skip-preprocessor Disable preprocessor
|
||||||
--pass-through Dump input without converting
|
|
||||||
Conversion:
|
Conversion:
|
||||||
|
--pass-through Dump input without converting
|
||||||
-E --exclude=CONV Exclude a particular conversion (always, assert,
|
-E --exclude=CONV Exclude a particular conversion (always, assert,
|
||||||
interface, or logic)
|
interface, or logic)
|
||||||
-v --verbose Retain certain conversion artifacts
|
-v --verbose Retain certain conversion artifacts
|
||||||
|
|
|
||||||
|
|
@ -61,10 +61,10 @@ defaultJob = Job
|
||||||
++ " macros from earlier files are not defined in later files")
|
++ " macros from earlier files are not defined in later files")
|
||||||
, skipPreprocessor = nam_ "skip-preprocessor" &= help "Disable preprocessor"
|
, skipPreprocessor = nam_ "skip-preprocessor" &= help "Disable preprocessor"
|
||||||
, passThrough = nam_ "pass-through" &= help "Dump input without converting"
|
, passThrough = nam_ "pass-through" &= help "Dump input without converting"
|
||||||
|
&= groupname "Conversion"
|
||||||
, exclude = nam_ "exclude" &= name "E" &= typ "CONV"
|
, exclude = nam_ "exclude" &= name "E" &= typ "CONV"
|
||||||
&= help ("Exclude a particular conversion (always, assert, interface,"
|
&= help ("Exclude a particular conversion (always, assert, interface,"
|
||||||
++ " or logic)")
|
++ " or logic)")
|
||||||
&= groupname "Conversion"
|
|
||||||
, verbose = nam "verbose" &= help "Retain certain conversion artifacts"
|
, verbose = nam "verbose" &= help "Retain certain conversion artifacts"
|
||||||
, write = Stdout &= ignore -- parsed from the flexible flag below
|
, write = Stdout &= ignore -- parsed from the flexible flag below
|
||||||
, writeRaw = "s" &= name "write" &= name "w" &= explicit &= typ "MODE/FILE"
|
, writeRaw = "s" &= name "write" &= name "w" &= explicit &= typ "MODE/FILE"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue