1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

[SCEV] Remove the singleton apply function (re-apply r271155)

Polly has been updated in r271177 to not use it.

llvm-svn: 271178
This commit is contained in:
Sanjoy Das 2016-05-29 07:53:21 +00:00
parent 242c5f7500
commit 0445693edb

View File

@ -680,13 +680,6 @@ namespace llvm {
private:
LoopToScevMapT ⤅
};
/// Applies the Map (Loop -> SCEV) to the given Scev.
static inline const SCEV *apply(const SCEV *Scev, LoopToScevMapT &Map,
ScalarEvolution &SE) {
return SCEVLoopAddRecRewriter::rewrite(Scev, Map, SE);
}
}
#endif