Question: Question 4 3 pts Consider the following partial function definition in C: char ctest(int a, int b) { char t1 = a _ b; char

Question 4 3 pts Consider the following partial function definition in C: char ctest(int a, int b) { char t1 = a _ b; char t2 = () b_ O) a; return t1 + t2; The complete C code has been translated to this fragment of x86 assembly code (with comments): # %edi contains a, %esi contains b cmpl %esi, %edi # Compare a-b setge %al # t1 cmpl %edi, %esi Compare b-a setbe %cl addb %al, %cl # t2 += t1 movsbl %cl, %eax # Convert type # t2 Fill in the blanks below with exact C code (with no extra spaces) to complete the function definition above so that it matches the x86 code. Note that the blanks are ordered in the C code from top to bottom, left to right. Blank 1: Blank 2: Blank 3: Blank 4
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
