@@ -157,8 +157,7 @@ options:
157
157
--time-passes time the individual phases of the compiler
158
158
--time-llvm-passes time the individual phases of the LLVM backend
159
159
--sysroot <path> override the system root (default: rustc's directory)
160
- --no-typestate don't run the typestate pass (unsafe!)
161
- --check-claims treat 'claim' and 'check' synonymously\n \n " ) ;
160
+ --no-typestate don't run the typestate pass (unsafe!)\n \n " ) ;
162
161
}
163
162
164
163
fn get_os ( str triple ) -> session:: os {
@@ -227,7 +226,6 @@ fn build_session_options(str binary, getopts::match match, str binary_dir) ->
227
226
auto time_llvm_passes = opt_present( match , "time-llvm-passes" ) ;
228
227
auto run_typestate = !opt_present( match , "no-typestate" ) ;
229
228
auto sysroot_opt = getopts:: opt_maybe_str( match , "sysroot" ) ;
230
- auto check_claims = opt_present( match , "check-claims" ) ;
231
229
let uint opt_level =
232
230
if ( opt_present( match , "O" ) ) {
233
231
if ( opt_present( match, "OptLevel" ) ) {
@@ -263,7 +261,6 @@ fn build_session_options(str binary, getopts::match match, str binary_dir) ->
263
261
stats=stats,
264
262
time_passes=time_passes,
265
263
time_llvm_passes=time_llvm_passes,
266
- check_claims=check_claims,
267
264
output_type=output_type,
268
265
library_search_paths=library_search_paths,
269
266
sysroot=sysroot) ;
@@ -299,7 +296,7 @@ fn main(vec[str] args) {
299
296
optflag ( "c" ) , optopt ( "o" ) , optflag ( "g" ) , optflag ( "save-temps" ) ,
300
297
optopt ( "sysroot" ) , optflag ( "stats" ) , optflag ( "time-passes" ) ,
301
298
optflag ( "time-llvm-passes" ) , optflag ( "no-typestate" ) ,
302
- optflag ( "check-claims" ) , optflag ( " noverify") ] ;
299
+ optflag ( "noverify" ) ] ;
303
300
auto binary = vec:: shift[ str] ( args) ;
304
301
auto binary_dir = fs:: dirname ( binary) ;
305
302
auto match =
0 commit comments