enum DeadArgumentEliminationPass::Liveness
Description
Liveness enum - During our initial pass over the program, we determine that things are either alive or maybe alive. We don't mark anything explicitly dead (even if we know they are), since anything not alive with no registered uses (in Uses) will never be marked alive and will thus become dead in the end.
Declared at: llvm/include/llvm/Transforms/IPO/DeadArgumentElimination.h:74
Enumerators
Name | Value | Comment |
---|---|---|
Live | 0 | |
MaybeLive | 1 |