Oops, fix logging string specs. Nobody likes writing RUST_LOG=_ZN5rustc5front7creaderE, do they?

This commit is contained in:
Graydon Hoare 2011-06-10 16:32:21 -07:00
parent 9671d21408
commit 8876e2c29e

View File

@ -5810,8 +5810,7 @@ fn load_if_immediate(&@block_ctxt cx, ValueRef v, &ty::t t) -> ValueRef {
fn trans_log(int lvl, &@block_ctxt cx, &@ast::expr e) -> result {
auto lcx = cx.fcx.lcx;
auto modname = link::mangle_internal_name_by_path(lcx.ccx,
lcx.module_path);
auto modname = str::connect(lcx.module_path, "::");
auto global;
if (lcx.ccx.module_data.contains_key(modname)) {
global = lcx.ccx.module_data.get(modname);