@@ -260,7 +260,7 @@ options:
260
260
--pretty [type] pretty-print the input instead of compiling
261
261
--ls list the symbols defined by a crate file
262
262
-L <path> add a directory to the library search path
263
- --noverify suppress LLVM verification step (slight speedup)
263
+ --no-verify suppress LLVM verification step (slight speedup)
264
264
--parse-only parse only; do not compile, assemble, or link
265
265
--no-trans run all passes except translation; no output
266
266
-g produce debug info
@@ -362,7 +362,7 @@ fn build_session_options(match: getopts::match)
362
362
} else if opt_present( match , "emit-llvm" ) {
363
363
link:: output_type_bitcode
364
364
} else { link : : output_type_exe } ;
365
- let verify = !opt_present( match , "noverify " ) ;
365
+ let verify = !opt_present( match , "no-verify " ) ;
366
366
let save_temps = opt_present( match , "save-temps" ) ;
367
367
let debuginfo = opt_present( match , "g" ) ;
368
368
let stats = opt_present( match , "stats" ) ;
@@ -463,7 +463,7 @@ fn opts() -> [getopts::opt] {
463
463
optflag ( "c" ) , optopt ( "o" ) , optflag ( "g" ) , optflag ( "save-temps" ) ,
464
464
optopt ( "sysroot" ) , optopt ( "target" ) , optflag ( "stats" ) ,
465
465
optflag ( "time-passes" ) , optflag ( "time-llvm-passes" ) ,
466
- optflag ( "noverify " ) ,
466
+ optflag ( "no-verify " ) ,
467
467
optmulti ( "cfg" ) , optflag ( "test" ) ,
468
468
optflag ( "lib" ) , optflag ( "static" ) , optflag ( "gc" ) ,
469
469
optflag ( "stack-growth" ) ,
0 commit comments