mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-19 15:54:18 +00:00
compiler/ml_optimize.m:
Transform if-then-elses of the form
if (cond)
// nothing
else
stmt
to
if (!cond)
stmt