fuhsnn / slimcc

C11 compiler with GNU / C23 extensions for x86-64 Linux, able to build Python and PostgreSQL
MIT License
24 stars 3 forks source link

`/` `%` overflow during const evaluation crash the compiler #67

Closed fuhsnn closed 5 months ago

fuhsnn commented 5 months ago
#include <stdint.h>
int div = 1 / 0;
int div2 = INT64_MIN / -1;
int mod = 1 % 0;
int mod2 = INT64_MIN % -1;