Displaying 1 result from an estimated 1 matches for "fc6c3907".
2015 Sep 13
2
RFC: faster simplifyInstructionsInBlock/SimplifyInstructions pass
>
> Instead of adding the operands to a list, erase the instruction and add them to the worklist wouldn’t be probably faster something like:
>
> if (Instruction *Used = dyn_cast<Instruction>(*OI))
> if (Used->hasOneUse())
> WorkList.insert(Used);
>
> If it has one use is going to be the instruction we are going to remove anyway, right?
I don’t think this