1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

Change Steens class to build with Vikram's changes

llvm-svn: 4572
This commit is contained in:
Chris Lattner 2002-11-06 18:08:32 +00:00
parent 09a2cc9a4a
commit 97722c2dad

View File

@ -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();