Skip to content

Commit cca5edc

Browse files
committed
Add exception for avx2 contracts
Signed-off-by: Jake Massimo <jakemas@amazon.com>
1 parent 44afe49 commit cca5edc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/check-contracts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def is_exception(funcname):
4646
if funcname == 'poly_permute_bitrev_to_custom':
4747
return True
4848

49-
if funcname.endswith("_native") or funcname.endswith("_asm"):
49+
if funcname.endswith("_native") or funcname.endswith("_asm") or funcname.endswith("_avx2"):
5050
# CBMC proofs are axiomatized against contracts of the backends
5151
return True
5252

0 commit comments

Comments
 (0)