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

Exercise 11

Write the LLVM bitcode equivalent of the following program:

int getOft(int * ptr, int idx){
    return ptr[idx];
}