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
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