-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
replace function_sig in compile.ml with LogicalFunctions.definition Merge github.com:rems-project/cerberus reset to origin master append builtin cn functions to ail_functions in core_to_mucore add builtin flag to translate_cn_expr WIP: replace ptr_eq with cn_function version also don't warn on inequal for builtins replace ptr_eq with a cn function rewrite is_null translate addr_eq and prov_eq refactor Merge branch 'master' of github.com:rems-project/cerberus revert to using LogicalFunctions.definition for compile.ml refactor builtins to use logicalfunctions.definition remove unused function add min and max bits to builtin defs add comment respond to review Merge branch 'master' of github.com:rems-project/cerberus use old function_sig type in compile.ml fix addr_eq Merge branch 'rems-project:master' into master respond to review
- Loading branch information
Showing
6 changed files
with
146 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
void f(unsigned int *x, unsigned int y) | ||
/*@ requires ptr_eq(x,y); | ||
ensures true; @*/ | ||
{ } |