mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-29 10:32:47 +00:00
Change Steens class to build with Vikram's changes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4572 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ce4a2e1132
commit
d747e8ffe9
@ -48,17 +48,17 @@ namespace {
|
||||
//
|
||||
|
||||
// alias - This is the only method here that does anything interesting...
|
||||
Result alias(const Value *V1, const Value *V2) const;
|
||||
Result alias(const Value *V1, const Value *V2);
|
||||
|
||||
/// canCallModify - Not implemented yet: FIXME
|
||||
///
|
||||
Result canCallModify(const CallInst &CI, const Value *Ptr) const {
|
||||
Result canCallModify(const CallInst &CI, const Value *Ptr) {
|
||||
return MayAlias;
|
||||
}
|
||||
|
||||
/// canInvokeModify - Not implemented yet: FIXME
|
||||
///
|
||||
Result canInvokeModify(const InvokeInst &I, const Value *Ptr) const {
|
||||
Result canInvokeModify(const InvokeInst &I, const Value *Ptr) {
|
||||
return MayAlias;
|
||||
}
|
||||
|
||||
@ -196,7 +196,7 @@ bool Steens::run(Module &M) {
|
||||
}
|
||||
|
||||
// alias - This is the only method here that does anything interesting...
|
||||
AliasAnalysis::Result Steens::alias(const Value *V1, const Value *V2) const {
|
||||
AliasAnalysis::Result Steens::alias(const Value *V1, const Value *V2) {
|
||||
assert(ResultGraph && "Result grcaph has not yet been computed!");
|
||||
|
||||
std::map<Value*, DSNodeHandle> &GVM = ResultGraph->getScalarMap();
|
||||
|
Loading…
Reference in New Issue
Block a user