[CallSiteSplitting] Use !Instruction::use_empty instead of checking for a...
[CallSiteSplitting] Use !Instruction::use_empty instead of checking for a non-zero return from getNumUses getNumUses is a linear operation. It walks a linked list to get a count. So in this case its better to just ask if there are any users rather than how many. llvm-svn: 327314
Loading
Please sign in to comment