Instruction ExtractValue wasn't handled in LoopVectorizationCostModel::getInstructionCost(). As a result, it was modeled as a mul which may not be really accurate. Since it typically takes 1 instruction to extract a value from a vector we now model this with a cost of 1.
This is a follow-up of D92208, that required changing this regression test.
Better to use TTI.getVectorInstrCost? And perhaps also handle InsertValue?