Return true if this value has N undroppable uses or more.
Synopsis
Declared in <llvm/IR/Value.h>
bool
hasNUndroppableUsesOrMore(unsigned int N) const;
Description
This is logically equivalent to getNumUses() >= N.
Return Value
True if there are at least N undroppable uses.
Parameters
Name |
Description |
N |
Minimum number of undroppable uses to test for. |
Created with MrDocs