diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-31 23:24:00 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-31 23:24:00 +0000 |
commit | 7f124e3abd882524ca7cea1e86e6278c1e0edd2a (patch) | |
tree | 9c509cfa758a082141881ff45faffd177493a2be /lib/Analysis/DataStructure/BottomUpClosure.cpp | |
parent | 8e0a6bf5560d0e06eed89d4ec3a67f718f0a2391 (diff) |
Add a fixme
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4479 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/BottomUpClosure.cpp')
-rw-r--r-- | lib/Analysis/DataStructure/BottomUpClosure.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Analysis/DataStructure/BottomUpClosure.cpp b/lib/Analysis/DataStructure/BottomUpClosure.cpp index 671863e1b9..defd80e308 100644 --- a/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/lib/Analysis/DataStructure/BottomUpClosure.cpp @@ -172,6 +172,8 @@ DSGraph &BUDataStructures::calculateGraph(Function &F) { } else if (FI.getName() == "printf" || FI.getName() == "sscanf" || FI.getName() == "fprintf" || FI.getName() == "open" || FI.getName() == "sprintf") { + // FIXME: These special cases should go away when we can define + // functions that take a variable number of arguments. // Erase the entry in the globals vector Callees.erase(Callees.begin()+c--); |