brintos

brintos / llvm-project-archived public Read only

0
0
Text · 162 B · 08c5f33 Raw
14 lines · c
1#include <clean-one.h>2 3int do_nothing_loop()4{5    int i = 32;6    int idx = 0;7 8    for (idx = i; idx > 0; --idx)9    {10        i += idx;11    }12    return i;13}14