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