Skip to content

Commit

Permalink
Merge branch 'develop' into HOTFIX-Int2Bytes-refactoring-no-2
Browse files Browse the repository at this point in the history
  • Loading branch information
jberthold authored Jul 21, 2024
2 parents 6225293 + 343c564 commit c9a7794
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/update-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
cd llvm-backend/src/main/native/llvm-backend
git checkout "${llvm_backend_version}"
cd -
sed -i 's! url = "github:runtimeverification/llvm-backend/.*";! url = "github:runtimeverification/llvm-backend/'"${llvm_backend_version}"'";!' flake.nix
sed -i 's! llvm-backend.url = "github:runtimeverification/llvm-backend/.*";! llvm-backend.url = "github:runtimeverification/llvm-backend/'"${llvm_backend_version}"'";!' flake.nix
if git add flake.nix llvm-backend/src/main/native/llvm-backend && git commit -m "flake.nix, llvm-backend/src/main/native/llvm-backend: update to version ${llvm_backend_version}"; then
changed=true
fi
Expand Down
2 changes: 1 addition & 1 deletion deps/haskell-backend_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.1.40
v0.1.46
2 changes: 1 addition & 1 deletion deps/llvm-backend_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.57
0.1.59
8 changes: 4 additions & 4 deletions flake.lock

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

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
description = "K Framework";
inputs = {
llvm-backend.url = "github:runtimeverification/llvm-backend/v0.1.56";
llvm-backend.url = "github:runtimeverification/llvm-backend/v0.1.59";
haskell-backend = {
url = "github:runtimeverification/haskell-backend/v0.1.32";
inputs.rv-utils.follows = "llvm-backend/rv-utils";
Expand Down
4 changes: 2 additions & 2 deletions pyk/src/pyk/kllvm/hints/prooftrace.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def name(self) -> str:

@property
def relative_position(self) -> str:
"""Return the relative position of the LLVM function event in the proof trace. Ex.: (0:0:0:0)."""
"""Return the relative position of the LLVM function event in the proof trace."""
return self._function_event.relative_position

@property
Expand Down Expand Up @@ -243,7 +243,7 @@ def name(self) -> str:

@property
def relative_position(self) -> str:
"""Return the relative position of the hook event in the proof trace. Ex.: (0:0:0:0)."""
"""Return the relative position of the hook event in the proof trace."""
return self._hook_event.relative_position

@property
Expand Down

0 comments on commit c9a7794

Please sign in to comment.