@@ -38,7 +38,7 @@ type config =
38
38
uint_type : uint_ty ,
39
39
float_type : float_ty } ;
40
40
41
- const ppregions : uint = 1 << 0 ;
41
+ const verbose : uint = 1 << 0 ;
42
42
const time_passes: uint = 1 << 1 ;
43
43
const count_llvm_insns: uint = 1 << 2 ;
44
44
const time_llvm_passes: uint = 1 << 3 ;
@@ -60,8 +60,7 @@ const meta_stats: uint = 1 << 16;
60
60
const no_opt: uint = 1 << 17 ;
61
61
62
62
fn debugging_opts_map ( ) -> ~[ ( ~str , ~str , uint ) ] {
63
- ~[ ( ~"ppregions", ~"prettyprint regions with \
64
- internal repr details", ppregions) ,
63
+ ~[ ( ~"verbose", ~"in general, enable more debug printouts", verbose) ,
65
64
( ~"time-passes", ~"measure time of each rustc pass", time_passes) ,
66
65
( ~"count-llvm-insns", ~"count where LLVM \
67
66
instrs originate", count_llvm_insns) ,
@@ -219,7 +218,7 @@ impl session {
219
218
fn impossible_case ( sp : span , msg : & str ) -> ! {
220
219
self . span_bug ( sp, #fmt ( "Impossible case reached: %s" , msg) ) ;
221
220
}
222
- fn ppregions ( ) -> bool { self . debugging_opt ( ppregions ) }
221
+ fn verbose ( ) -> bool { self . debugging_opt ( verbose ) }
223
222
fn time_passes ( ) -> bool { self . debugging_opt ( time_passes) }
224
223
fn count_llvm_insns ( ) -> bool { self . debugging_opt ( count_llvm_insns) }
225
224
fn count_type_sizes ( ) -> bool { self . debugging_opt ( count_type_sizes) }
0 commit comments