brintos

brintos / llvm-project-archived public Read only

0
0
Text · 558 B · 5e4a490 Raw
34 lines · c
1void2lotsOfArgs3(4  int firstArg,5  int secondArg,6  int thirdArg,7  int fourthArg8)9{10  int x = firstArg + secondArg + thirdArg + fourthArg;11}12 13int14modifyInt(int incoming)15{16  return incoming % 2;17}18 19int20main (int argc, char **argv)21{22  if (argc > 0)23    {24      int var_makes_block = argc + 1;25      int dummy = 0; // Break here to try targetted stepping.26      lotsOfArgs(var_makes_block,27                 modifyInt(20),28                 30,29                 modifyInt(40));30      int abc = 0; // Done calling lotsOfArgs.31    }32  return 0; // All done.33}34