Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update toolchain to nightly-2023-09-05 #2734

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions cprover_bindings/src/irep/to_irep.rs
Original file line number Diff line number Diff line change
Expand Up @@ -509,16 +509,16 @@ impl goto_program::Symbol {
SymbolValues::None => Irep::nil(),
},
location: self.location.to_irep(mm),
/// Unique identifier, same as key in symbol table `foo::x`
// Unique identifier, same as key in symbol table `foo::x`
name: self.name,
/// Only used by verilog
// Only used by verilog
module: self.module.unwrap_or("".into()),
/// Local identifier `x`
// Local identifier `x`
base_name: self.base_name.unwrap_or("".into()),
/// Almost always the same as base_name, but with name mangling can be relevant
// Almost always the same as `base_name`, but with name mangling can be relevant
pretty_name: self.pretty_name.unwrap_or("".into()),
/// Currently set to C. Consider creating a "rust" mode and using it in cbmc
/// https://github.com/model-checking/kani/issues/1
// Currently set to C. Consider creating a "rust" mode and using it in cbmc
// https://github.com/model-checking/kani/issues/1
mode: self.mode.to_string().into(),

// global properties
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# SPDX-License-Identifier: Apache-2.0 OR MIT

[toolchain]
channel = "nightly-2023-09-02"
channel = "nightly-2023-09-05"
components = ["llvm-tools-preview", "rustc-dev", "rust-src", "rustfmt"]