Skip to content
Unverified Commit 011f25a4 authored by Aleksandr Popov's avatar Aleksandr Popov Committed by GitHub
Browse files

[NFC][IRCE] Add unit test to show room for improvement (#71506)



Add tests for compound loop bounds where IRCE is possible

if (K > 0 && M > 0)
  for (i = 0; i < min(K, M); i++) {...}

if (K > 0 && M > 0)
  for (i = min(K, M); i >= 0; i--) {...}

Co-authored-by: default avatarAleksander Popov <apopov@azul.com>
parent ba116ff4
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment