Skip to content

[sync] update Gödelscript source code #82

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

Merged
merged 4 commits into from
Dec 17, 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
4 changes: 4 additions & 0 deletions godel-script/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ set(GODEL_FRONTEND_HDR_FILES
godel-frontend/src/semantic.h
godel-frontend/src/symbol.h
godel-frontend/src/ir/aggregator_inline_remark.h
godel-frontend/src/ir/call_graph.h
godel-frontend/src/ir/flatten_block.h
godel-frontend/src/ir/ir_gen.h
godel-frontend/src/ir/ir_context.h
Expand All @@ -29,6 +30,7 @@ set(GODEL_FRONTEND_HDR_FILES
godel-frontend/src/ir/pass.h
godel-frontend/src/ir/pass_manager.h
godel-frontend/src/ir/remove_unused.h
godel-frontend/src/ir/reorder.h
godel-frontend/src/error/error.h
godel-frontend/src/ast/ast_node.h
godel-frontend/src/ast/ast_root.h
Expand Down Expand Up @@ -60,6 +62,7 @@ set(GODEL_FRONTEND_SRC_FILES
godel-frontend/src/semantic.cpp
godel-frontend/src/symbol.cpp
godel-frontend/src/ir/aggregator_inline_remark.cpp
godel-frontend/src/ir/call_graph.cpp
godel-frontend/src/ir/flatten_block.cpp
godel-frontend/src/ir/ir_gen.cpp
godel-frontend/src/ir/ir_context.cpp
Expand All @@ -69,6 +72,7 @@ set(GODEL_FRONTEND_SRC_FILES
godel-frontend/src/ir/pass.cpp
godel-frontend/src/ir/pass_manager.cpp
godel-frontend/src/ir/remove_unused.cpp
godel-frontend/src/ir/reorder.cpp
godel-frontend/src/error/error.cpp
godel-frontend/src/ast/ast_visitor.cpp
godel-frontend/src/ast/ast_root.cpp
Expand Down
2 changes: 1 addition & 1 deletion godel-script/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Use this command to apply patch:

```bash
cd souffle
git am ../../0001-init-self-used-souffle-from-public-souffle.patch
git am ../0001-init-self-used-souffle-from-public-souffle.patch
```

Use these commands to revert:
Expand Down
Loading
Loading