Revive the Dead Computation
EasyFix scaledSum so it returns the computed result instead of the unused fallback variable. Before you fix it, switch the assembly panel to -O2 and notice that the (a + b) * 3 computation is completely absent: because nothing observable depends on result, dead code elimination removed it. After the fix, the computation appears in the listing. Compare the two versions.
Success Criteria
Your code must pass 1 test case(s) to complete this exercise. 3 hint(s) are available if you need help.
Sign in to track your progress
You can work on exercises as a guest, but sign in to track your progress and save your submissions.