Skip to content

Commit

Permalink
Upgrade toolchain to 2024-11-27
Browse files Browse the repository at this point in the history
Update parameter and function indices in LLBC tests that appear to have
changed without any of the upstream changes obviously causing this.
Those tests will eventually be removed in upcoming changes.

Resolves: model-checking#3747
  • Loading branch information
tautschnig committed Dec 2, 2024
1 parent aaf34f3 commit 968e492
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
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-2024-11-26"
channel = "nightly-2024-11-27"
components = ["llvm-tools", "rustc-dev", "rust-src", "rustfmt"]
2 changes: 1 addition & 1 deletion tests/expected/llbc/enum/expected
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ fn test::main()
let i@2: i32; // local

e@1 := test::MyEnum::A { 0: const (1 : i32) }
i@2 := @Fun1(move (e@1))
i@2 := @Fun0(move (e@1))
drop i@2
@0 := ()
return
Expand Down
2 changes: 1 addition & 1 deletion tests/expected/llbc/projection/expected
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ struct test::MyStruct =
}

enum test::MyEnum0 =
| A(0: @Adt0, 1: i32)
| A(0: @Adt1, 1: i32)
| B()


Expand Down
2 changes: 1 addition & 1 deletion tests/expected/llbc/tuple/expected
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ fn test::main()
let @2: (i32, i32); // anonymous local

@2 := (const (1 : i32), const (2 : i32))
s@1 := @Fun1(move (@2))
s@1 := @Fun0(move (@2))
drop @2
drop s@1
@0 := ()
Expand Down

0 comments on commit 968e492

Please sign in to comment.