Skip to content

Commit

Permalink
Bump rustc version
Browse files Browse the repository at this point in the history
  • Loading branch information
Nadrieril committed May 28, 2024
1 parent 730f6c9 commit f562534
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frontend/exporter/src/types/mir.rs
Original file line number Diff line number Diff line change
Expand Up @@ -529,8 +529,6 @@ pub enum TerminatorKind {
discr: Operand,
targets: SwitchTargets,
},
Resume,
Terminate,
Return,
Unreachable,
Drop {
Expand Down Expand Up @@ -581,6 +579,8 @@ pub enum TerminatorKind {
real_target: BasicBlock,
unwind: UnwindAction,
},
UnwindResume,
UnwindTerminate(UnwindTerminateReason),
InlineAsm {
template: Vec<InlineAsmTemplatePiece>,
operands: Vec<InlineAsmOperand>,
Expand Down
1 change: 1 addition & 0 deletions frontend/exporter/src/types/todo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ sinto_todo!(rustc_abi, IntegerType);
sinto_todo!(rustc_abi, ReprFlags);
sinto_todo!(rustc_abi, Align);
sinto_todo!(rustc_middle::mir::interpret, ConstAllocation<'a>);
sinto_todo!(rustc_middle::mir, UnwindTerminateReason);
sinto_todo!(rustc_ast::tokenstream, DelimSpan);
sinto_todo!(rustc_hir::def, DefKind);
sinto_todo!(rustc_hir, GenericArgs<'a> as HirGenericArgs);
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "nightly-2023-08-15"
channel = "nightly-2023-09-01"
components = [ "rustc-dev", "llvm-tools-preview" , "rust-analysis" , "rust-src" , "rustfmt" ]

0 comments on commit f562534

Please sign in to comment.