Return true if this function can prove that the instruction I is executed for every iteration of the loop L.
Declared in <llvm/Analysis/ValueTracking.h>
bool
isGuaranteedToExecuteForEveryIteration(
Instruction const* I,
Loop const* L);
Note that this currently only considers the loop header.
True if I executes on every iteration of L.
| Name | Description |
|---|---|
| I | Instruction whose execution frequency in the loop is tested. |
| L | Loop in which I may execute. |