Add a fixme
authorChris Lattner <sabre@nondot.org>
Thu, 31 Oct 2002 23:24:00 +0000 (23:24 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 31 Oct 2002 23:24:00 +0000 (23:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4479 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/DataStructure/BottomUpClosure.cpp

index 671863e1b9dc2b9e342b0403ff331ac0d1c96145..defd80e308f0afb360a9e81009c1c9fb9bc252fc 100644 (file)
@@ -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--);