diff options
| author | Michael Soegtrop | 2019-12-28 15:18:17 +0100 |
|---|---|---|
| committer | Michael Soegtrop | 2019-12-28 15:18:17 +0100 |
| commit | 596515b46d08b470c57eb247e1efdd385acf4f3d (patch) | |
| tree | 2802ad0375510249cf35b43daf762471ed12d216 /test-suite | |
| parent | f403262aaa9ebe5cf518561875c3a46da83a98b6 (diff) | |
| parent | 00c0b652311b8c6b26c7e21b17db4ab12a35f286 (diff) | |
Merge PR #11323: Fix mulc on 32-bit architectures
Reviewed-by: MSoegtropIMC
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/bug_11321.v | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_11321.v b/test-suite/bugs/closed/bug_11321.v new file mode 100644 index 0000000000..ce95280fb1 --- /dev/null +++ b/test-suite/bugs/closed/bug_11321.v @@ -0,0 +1,10 @@ +Require Import Cyclic63. + +Goal False. +Proof. +assert (4294967296 *c 2147483648 = WW 2 0)%int63 as H. + vm_cast_no_check (@eq_refl (zn2z int) (WW 2 0)%int63). +generalize (f_equal (zn2z_to_Z wB to_Z) H). +now rewrite mulc_WW_spec. +Fail Qed. +Abort. |
