mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 02:36:06 +00:00
hasSCEV() was declared in ScalarEvolution.h, but never defined. This must have
gone lost during the pImpl conversion. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70536 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ef956fc784
commit
e3d12854b8
@ -1538,6 +1538,12 @@ SCEVHandle ScalarEvolution::getCouldNotCompute() {
|
||||
return UnknownValue;
|
||||
}
|
||||
|
||||
// hasSCEV - Return true if the SCEV for this value has already been
|
||||
/// computed.
|
||||
bool ScalarEvolution::hasSCEV(Value *V) const {
|
||||
return Scalars.count(V);
|
||||
}
|
||||
|
||||
/// getSCEV - Return an existing SCEV if it exists, otherwise analyze the
|
||||
/// expression and create a new one.
|
||||
SCEVHandle ScalarEvolution::getSCEV(Value *V) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user