mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-30 07:00:45 +00:00
Add a method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13105 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1363e85df7
commit
e1beb8f59d
@ -250,6 +250,14 @@ namespace llvm {
|
||||
/// starts at zero and steps by one on each iteration.
|
||||
Value *GetOrInsertCanonicalInductionVariable(const Loop *L, const Type *Ty);
|
||||
|
||||
|
||||
/// addInsertedValue - Remember the specified instruction as being the
|
||||
/// canonical form for the specified SCEV.
|
||||
void addInsertedValue(Instruction *I, SCEV *S) {
|
||||
InsertedExpressions[S] = I;
|
||||
InsertedInstructions.insert(I);
|
||||
}
|
||||
|
||||
/// ExpandCodeFor - Insert code to directly compute the specified SCEV
|
||||
/// expression into the program. The inserted code is inserted into the
|
||||
/// specified block.
|
||||
|
Loading…
Reference in New Issue
Block a user