enum class SkipPast
Description
Indicates what kind of indirections should be skipped past when retrieving storage locations or values. FIXME: Consider renaming this or replacing it with a more appropriate model. See the discussion in https://reviews.llvm.org/D116596 for context.
Declared at: clang/include/clang/Analysis/FlowSensitive/DataflowEnvironment.h:40
Enumerators
Name | Value | Comment |
---|---|---|
None | 0 | No indirections should be skipped past. |
Reference | 1 | An optional reference should be skipped past. |
ReferenceThenPointer | 2 | An optional reference should be skipped past, then an optional pointer should be skipped past. |