]> git.lizzy.rs Git - rust.git/commitdiff
Review comments
authorbjorn3 <bjorn3@users.noreply.github.com>
Sat, 26 Mar 2022 16:27:06 +0000 (17:27 +0100)
committerbjorn3 <bjorn3@users.noreply.github.com>
Sat, 26 Mar 2022 16:27:06 +0000 (17:27 +0100)
build_sysroot/Cargo.toml
src/lib.rs

index 05863471cb1e6aa3f3dea5f6de99ce4c77ba6591..cfadf47cc3f8608ad5e26832d7c53a6571efb8cc 100644 (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" }
index 0647d8c28eea269782ff9a05cfaa662709de7a2c..eac4a06226cf8aaf6d7ace95fbf54f176c0fc2ae 100644 (file)
@@ -103,7 +103,7 @@ fn init(&self, sess: &Session) {
     }
 
     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![];
     }