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 dependency: deps/llvm-backend_release #4598

Merged
merged 13 commits into from
Aug 22, 2024
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/llvm-backend_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.81
0.1.84
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.81";
llvm-backend.url = "github:runtimeverification/llvm-backend/v0.1.84";
haskell-backend = {
url = "github:runtimeverification/haskell-backend/v0.1.76";
inputs.rv-utils.follows = "llvm-backend/rv-utils";
Expand Down
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion llvm-backend/src/main/native/llvm-backend
Submodule llvm-backend updated 103 files
6 changes: 3 additions & 3 deletions pyk/src/tests/integration/kllvm/test_prooftrace.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def test_proof_trace(self, hints: bytes, header: prooftrace.KoreHeader, definiti
def test_streaming_parser_iter(self, header: prooftrace.KoreHeader, hints_file: Path) -> None:
# read the hints file and get the iterator for the proof trace
it = prooftrace.LLVMRewriteTraceIterator.from_file(hints_file, header)
assert it.version == 11
assert it.version == 12

# Test that the __iter__ is working
list_of_events = list(it)
Expand Down Expand Up @@ -126,7 +126,7 @@ def test_streaming_parser_next(self, header: prooftrace.KoreHeader, hints_file:

# read the hints file and get the iterator for the proof trace
it = prooftrace.LLVMRewriteTraceIterator.from_file(hints_file, header)
assert it.version == 11
assert it.version == 12

# skip pre-trace events
while True:
Expand Down Expand Up @@ -810,7 +810,7 @@ def test_parse_proof_hint_peano(self, hints: bytes, header: prooftrace.KoreHeade
assert len(pt.pre_trace) == 11

# 404 post-initial-configuration events
assert len(pt.trace) == 404
assert len(pt.trace) == 419


class TestIMP5(ProofTraceTest):
Expand Down
2 changes: 1 addition & 1 deletion pyk/src/tests/integration/test_krun_proof_hints.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Test0Decrement(KRunTest, ProofTraceTest):
LblinitGeneratedTopCell{}(Lbl'Unds'Map'Unds'{}(Lbl'Stop'Map{}(),Lbl'UndsPipe'-'-GT-Unds'{}(inj{SortKConfigVar{}, SortKItem{}}(\\dv{SortKConfigVar{}}("$PGM")),inj{SortNat{}, SortKItem{}}(Lbl0'Unds'DECREMENT-SYNTAX'Unds'Nat{}()))))
"""

HINTS_OUTPUT = """version: 11
HINTS_OUTPUT = """version: 12
hook: MAP.element Lbl'UndsPipe'-'-GT-Unds'{} ()
function: Lbl'UndsPipe'-'-GT-Unds'{} ()
arg: kore[\\dv{SortKConfigVar{}}("$PGM")]
Expand Down
Loading