Skip to content
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
2 changes: 1 addition & 1 deletion deps/stable-mir-json
Submodule stable-mir-json updated 31 files
+38 −2 src/printer.rs
+2 −2 tests/integration/normalise-filter.jq
+99 −194 tests/integration/programs/assert_eq.smir.json.expected
+249 −498 tests/integration/programs/binop.smir.json.expected
+52 −104 tests/integration/programs/char-trivial.smir.json.expected
+62 −124 tests/integration/programs/closure-args.smir.json.expected
+58 −116 tests/integration/programs/closure-no-args.smir.json.expected
+60 −120 tests/integration/programs/const-arithm-simple.smir.json.expected
+65 −130 tests/integration/programs/div.smir.json.expected
+55 −110 tests/integration/programs/double-ref-deref.smir.json.expected
+47 −94 tests/integration/programs/enum.smir.json.expected
+69 −138 tests/integration/programs/fibonacci.smir.json.expected
+70 −140 tests/integration/programs/float.smir.json.expected
+6 −0 tests/integration/programs/fn-ptr-in-arg.rs
+7,489 −0 tests/integration/programs/fn-ptr-in-arg.smir.json.expected
+65 −130 tests/integration/programs/modulo.smir.json.expected
+68 −136 tests/integration/programs/mutual_recursion.smir.json.expected
+56 −112 tests/integration/programs/option-construction.smir.json.expected
+104 −204 tests/integration/programs/param_types.smir.json.expected
+59 −118 tests/integration/programs/primitive-type-bounds.smir.json.expected
+62 −124 tests/integration/programs/recursion-simple-match.smir.json.expected
+62 −124 tests/integration/programs/recursion-simple.smir.json.expected
+53 −106 tests/integration/programs/ref-deref.smir.json.expected
+106 −212 tests/integration/programs/shl_min.smir.json.expected
+122 −246 tests/integration/programs/slice.smir.json.expected
+55 −110 tests/integration/programs/strange-ref-deref.smir.json.expected
+59 −118 tests/integration/programs/struct.smir.json.expected
+75 −150 tests/integration/programs/sum-to-n.smir.json.expected
+73 −146 tests/integration/programs/tuple-eq.smir.json.expected
+55 −110 tests/integration/programs/tuples-simple.smir.json.expected
+86 −172 tests/integration/programs/weirdRefs.smir.json.expected
2 changes: 1 addition & 1 deletion deps/stable-mir-json_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20a1bbdfc1fb36fb19539d0d4d91f5a437be7de6
626e8fed0470078c4d980b6b5b503a3aceb355ec
2 changes: 1 addition & 1 deletion deps/uv_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.9
0.9.14
36 changes: 18 additions & 18 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

flake-utils.url = "github:numtide/flake-utils";

stable-mir-json-flake.url = "github:runtimeverification/stable-mir-json/20a1bbdfc1fb36fb19539d0d4d91f5a437be7de6";
stable-mir-json-flake.url = "github:runtimeverification/stable-mir-json/626e8fed0470078c4d980b6b5b503a3aceb355ec";
stable-mir-json-flake = {
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
Expand All @@ -18,7 +18,7 @@
inputs.nixpkgs.follows = "nixpkgs";
};

uv2nix.url = "github:pyproject-nix/uv2nix/c8cf711802cb00b2e05d5c54d3486fce7bfc8f7c";
uv2nix.url = "github:pyproject-nix/uv2nix/4cca323a547a1aaa9b94929c4901bed5343eafe8";
# uv2nix requires a newer version of nixpkgs
# therefore, we pin uv2nix specifically to a newer version of nixpkgs
# until we replaced our stale version of nixpkgs with an upstream one as well
Expand All @@ -27,7 +27,7 @@
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
uv2nix.inputs.nixpkgs.follows = "nixpkgs-unstable";
# uv2nix.inputs.nixpkgs.follows = "nixpkgs";
pyproject-build-systems.url = "github:pyproject-nix/build-system-pkgs/795a980d25301e5133eca37adae37283ec3c8e66";
pyproject-build-systems.url = "github:pyproject-nix/build-system-pkgs/042904167604c681a090c07eb6967b4dd4dae88c";
pyproject-build-systems = {
inputs.nixpkgs.follows = "uv2nix/nixpkgs";
inputs.uv2nix.follows = "uv2nix";
Expand Down
Loading