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

Exercise 6

Write the following code in LLVM IR:
int foo(int * p){
	p[7] = 1;
	p[0] = 2;
}