Skip to content

Commit fb9658d

Browse files
committed
Review comments
1 parent 724473b commit fb9658d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build_sysroot/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version = "0.0.0"
55

66
[dependencies]
77
core = { path = "./sysroot_src/library/core" }
8-
compiler_builtins = "=0.1.70" # TODO: update back to "0.1" when updating to latest nightly.
8+
compiler_builtins = "0.1"
99
alloc = { path = "./sysroot_src/library/alloc" }
1010
std = { path = "./sysroot_src/library/std", features = ["panic_unwind", "backtrace"] }
1111
test = { path = "./sysroot_src/library/test" }

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ impl CodegenBackend for GccCodegenBackend {
103103
}
104104

105105
fn provide(&self, providers: &mut Providers) {
106-
// FIXME compute list of enabled features from cli flags
106+
// FIXME(antoyo) compute list of enabled features from cli flags
107107
providers.global_backend_features = |_tcx, ()| vec![];
108108
}
109109

0 commit comments

Comments
 (0)