enum InMemoryModuleCache::State

Description

There are four states for a PCM. It must monotonically increase. 1. Unknown: the PCM has neither been read from disk nor built. 2. Tentative: the PCM has been read from disk but not yet imported or built. It might work. 3. ToBuild: the PCM read from disk did not work but a new one has not been built yet. 4. Final: indicating that the current PCM was either built in this process or has been successfully imported.

Declared at: clang/include/clang/Serialization/InMemoryModuleCache.h:57

Enumerators

NameValueComment
Unknown0
Tentative1
ToBuild2
Final3