aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/DataStructure/Steensgaard.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-11-01 17:34:23 +0000
committerChris Lattner <sabre@nondot.org>2002-11-01 17:34:23 +0000
commit4f53bef7cdbc6b01efa70cca7e2e8d5fff38177b (patch)
treeca12535eb5a0a8f1fbebce5f151c8f10381cce68 /lib/Analysis/DataStructure/Steensgaard.cpp
parent09e89faf8c4b4489bbbfe76ade6b39a998cb7680 (diff)
Fix comments, steens is context sensitive, we just haven't implemented
mod/ref apis yet git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4485 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/Steensgaard.cpp')
-rw-r--r--lib/Analysis/DataStructure/Steensgaard.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Analysis/DataStructure/Steensgaard.cpp b/lib/Analysis/DataStructure/Steensgaard.cpp
index 74f61c6126..f2b6e87a1f 100644
--- a/lib/Analysis/DataStructure/Steensgaard.cpp
+++ b/lib/Analysis/DataStructure/Steensgaard.cpp
@@ -50,16 +50,16 @@ namespace {
// alias - This is the only method here that does anything interesting...
Result alias(const Value *V1, const Value *V2) const;
- /// canCallModify - We are not interprocedural, so we do nothing exciting.
+ /// canCallModify - Not implemented yet: FIXME
///
Result canCallModify(const CallInst &CI, const Value *Ptr) const {
return MayAlias;
}
- /// canInvokeModify - We are not interprocedural, so we do nothing exciting.
+ /// canInvokeModify - Not implemented yet: FIXME
///
Result canInvokeModify(const InvokeInst &I, const Value *Ptr) const {
- return MayAlias; // We are not interprocedural
+ return MayAlias;
}
private: