clang
3.9.0
|
#include <UninitializedValues.h>
Public Member Functions | |
UninitVariablesHandler () | |
virtual | ~UninitVariablesHandler () |
virtual void | handleUseOfUninitVariable (const VarDecl *vd, const UninitUse &use) |
Called when the uninitialized variable is used at the given expression. More... | |
virtual void | handleSelfInit (const VarDecl *vd) |
Called when the uninitialized variable analysis detects the idiom 'int x = x'. More... | |
Definition at line 100 of file UninitializedValues.h.
|
inline |
Definition at line 102 of file UninitializedValues.h.
|
virtual |
Definition at line 925 of file UninitializedValues.cpp.
|
inlinevirtual |
Called when the uninitialized variable analysis detects the idiom 'int x = x'.
All other uses of 'x' within the initializer are handled by handleUseOfUninitVariable.
Definition at line 112 of file UninitializedValues.h.
|
inlinevirtual |
Called when the uninitialized variable is used at the given expression.
Definition at line 106 of file UninitializedValues.h.