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

Exercise 5

Write llvm IR corresponding to the following C snippet:

extern int rand()
int foo(){
  return rand();
}