We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Consider this code:
(elcomp--do '( (defun test-case () (let ((i 0) (s 0)) (while (<= i 10000000) (setq s (+ s i)) (setq i (1+ i))) )) ) ;; #'elcomp--c-translate )
Here the compiler should be able to entirely eliminate the loop.