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

Draw the Control-Flow Graph and show the value-sets at the beginning and end of each basic block.

int a = 0;
int b = 0;
 if (g < 8){
	b = a + 1; 
 	if ( g > 6){
		a++;
	}
 }
 return;