do not zero late resource memory on boot

This commit is contained in:
Jorge Aparicio 2019-10-21 16:38:04 -05:00
parent 1fe9767eba
commit 9f092efe24

View file

@ -32,7 +32,11 @@ pub fn codegen(
cross_initialized: false,
} => (
util::cfg_core(*core, app.args.cores),
util::link_section("data", *core),
if expr.is_none() {
util::link_section_uninit(Some(*core))
} else {
util::link_section("data", *core)
},
),
// shared `static`s and cross-initialized resources need to be in `.shared` memory
@ -42,7 +46,11 @@ pub fn codegen(
} else {
None
},
None,
if expr.is_none() {
util::link_section_uninit(None)
} else {
None
},
),
};