Review comments

This commit is contained in:
bjorn3 2022-03-26 17:27:06 +01:00
parent 724473b330
commit fb9658d312
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ version = "0.0.0"
[dependencies]
core = { path = "./sysroot_src/library/core" }
compiler_builtins = "=0.1.70" # TODO: update back to "0.1" when updating to latest nightly.
compiler_builtins = "0.1"
alloc = { path = "./sysroot_src/library/alloc" }
std = { path = "./sysroot_src/library/std", features = ["panic_unwind", "backtrace"] }
test = { path = "./sysroot_src/library/test" }

View File

@ -103,7 +103,7 @@ impl CodegenBackend for GccCodegenBackend {
}
fn provide(&self, providers: &mut Providers) {
// FIXME compute list of enabled features from cli flags
// FIXME(antoyo) compute list of enabled features from cli flags
providers.global_backend_features = |_tcx, ()| vec![];
}