stripNullTest overloads
Synopses
Declared in <llvm/Analysis/ValueTracking.h>
Returns the inner value X if the expression has the form f(X) where f(X) == 0 if and only if X == 0, otherwise returns nullptr.
Value*
stripNullTest(Value* V);
Const overload of stripNullTest.
Value const*
stripNullTest(Value const* V);
Return Value
Inner value X, or null if the form does not match.
Parameters
Name |
Description |
V |
Expression that may be a null‐preserving wrapper around X. |
Created with MrDocs