diff options
author | Maxime Dénès <mail@maximedenes.fr> | 2014-10-10 03:45:03 -0400 |
---|---|---|
committer | Maxime Dénès <mail@maximedenes.fr> | 2014-10-10 03:49:50 -0400 |
commit | 5b0769b33004202d015770aff3f3cdd347b099fb (patch) | |
tree | e3964c2163d73fbda3fd57be683f6e1c821e23e4 /theories/Numbers | |
parent | ba50753e9da60a23a40dedea59fb7f25e3ba4d15 (diff) |
Fix segfault in native compiler on int31 division.
Thanks to Yves for reporting it!
Diffstat (limited to 'theories/Numbers')
-rw-r--r-- | theories/Numbers/Cyclic/Int31/Int31.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Numbers/Cyclic/Int31/Int31.v b/theories/Numbers/Cyclic/Int31/Int31.v index 885cd0daf..e80f209eb 100644 --- a/theories/Numbers/Cyclic/Int31/Int31.v +++ b/theories/Numbers/Cyclic/Int31/Int31.v @@ -350,7 +350,7 @@ Register sub31carryc as int31 minuscarryc in "coq_int31" by True. Register mul31 as int31 times in "coq_int31" by True. Register mul31c as int31 timesc in "coq_int31" by True. Register div3121 as int31 div21 in "coq_int31" by True. -Register div31 as int31 div in "coq_int31" by True. +Register div31 as int31 diveucl in "coq_int31" by True. Register compare31 as int31 compare in "coq_int31" by True. Register addmuldiv31 as int31 addmuldiv in "coq_int31" by True. Register lor31 as int31 lor in "coq_int31" by True. |