about summary refs log tree commit diff
path: root/src/librustc/driver
diff options
context:
space:
mode:
authorViktor Dahl <pazaconyoman@gmail.com>2013-02-08 00:57:31 +0100
committerViktor Dahl <pazaconyoman@gmail.com>2013-02-08 00:57:31 +0100
commitfae8fc94dc893c7a08a49941da3568a2ae673a47 (patch)
tree8e31e52f68ec928efb7f2841e277849ab588b573 /src/librustc/driver
parentb8943474dc4313c432ed791cebe9b76f89b0ad84 (diff)
downloadrust-fae8fc94dc893c7a08a49941da3568a2ae673a47.tar.gz
rust-fae8fc94dc893c7a08a49941da3568a2ae673a47.zip
Added a few missing 'pub's
Diffstat (limited to 'src/librustc/driver')
-rw-r--r--src/librustc/driver/session.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/librustc/driver/session.rs b/src/librustc/driver/session.rs
index 538c0c71863..ac0052fdb65 100644
--- a/src/librustc/driver/session.rs
+++ b/src/librustc/driver/session.rs
@@ -75,11 +75,11 @@ pub const count_type_sizes: uint = 1 << 14;
 pub const meta_stats: uint = 1 << 15;
 pub const no_opt: uint = 1 << 16;
 pub const no_monomorphic_collapse: uint = 1 << 17;
-const gc: uint = 1 << 18;
-const jit: uint = 1 << 19;
-const debug_info: uint = 1 << 20;
-const extra_debug_info: uint = 1 << 21;
-const static: uint = 1 << 22;
+pub const gc: uint = 1 << 18;
+pub const jit: uint = 1 << 19;
+pub const debug_info: uint = 1 << 20;
+pub const extra_debug_info: uint = 1 << 21;
+pub const static: uint = 1 << 22;
 
 pub fn debugging_opts_map() -> ~[(~str, ~str, uint)] {
     ~[(~"verbose", ~"in general, enable more debug printouts", verbose),