Skip to content

Commit 18d347d

Browse files
committed
Ignore assembly contract in check-contracts script
Signed-off-by: Matthias J. Kannwischer <[email protected]>
1 parent 6b661c6 commit 18d347d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/check-contracts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def gen_contracts():
4242
def is_exception(funcname):
4343
# The functions passing this filter are known not to have a proof
4444

45-
if funcname.endswith("_native"):
45+
if funcname.endswith("_native") or funcname.endswith("_asm"):
4646
# CBMC proofs are axiomatized against contracts of the backends
4747
return True
4848

0 commit comments

Comments
 (0)