If you turned in a solution in class, you already got credit for this assignment. Otherwise, answer the following and submit to the E10 box on Canvas.

Exercise 10

Write the LLVM bitcode equivalent of the following program:

int main(int argc){
   int i = 0;
   while (i < argc){
      i = i + 1;
   }
   return i;
}