mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-02 16:21:36 +00:00
export two methods
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20526 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1c81f1390d
commit
df28a31435
@ -54,6 +54,16 @@ namespace llvm {
|
||||
public:
|
||||
SCEV(unsigned SCEVTy) : SCEVType(SCEVTy), RefCount(0) {}
|
||||
|
||||
/// getNegativeSCEV - Return the SCEV object corresponding to -V.
|
||||
///
|
||||
static SCEVHandle getNegativeSCEV(const SCEVHandle &V);
|
||||
|
||||
/// getMinusSCEV - Return LHS-RHS.
|
||||
///
|
||||
static SCEVHandle getMinusSCEV(const SCEVHandle &LHS,
|
||||
const SCEVHandle &RHS);
|
||||
|
||||
|
||||
unsigned getSCEVType() const { return SCEVType; }
|
||||
|
||||
/// getValueRange - Return the tightest constant bounds that this value is
|
||||
|
Loading…
x
Reference in New Issue
Block a user