identifyNoAliasScopesToClone overloads
Declared in <llvm/Transforms/Utils/Cloning.h>
Collect noalias scopes declared in the given basic blocks.
void
identifyNoAliasScopesToClone(
ArrayRef<BasicBlock*> BBs,
SmallVectorImpl<MDNode*>& NoAliasDeclScopes);
» more...
Collect noalias scopes declared in an instruction range.
void
identifyNoAliasScopesToClone(
BasicBlock::iterator Start,
BasicBlock::iterator End,
SmallVectorImpl<MDNode*>& NoAliasDeclScopes);
» more...
| Name | Description |
|---|---|
| BBs | Basic blocks to scan for noalias scope declarations. |
| NoAliasDeclScopes | Filled with the scopes declared in BBs. |
| Start | Beginning of the instruction range to scan. |
| End | End of the instruction range to scan (exclusive). |