[llvm-commits] CVS: llvm/lib/Analysis/DataStructure/Local.cpp

Andrew Lenharth alenhar2 at cs.uiuc.edu
Wed Mar 15 10:32:30 PST 2006



Changes in directory llvm/lib/Analysis/DataStructure:

Local.cpp updated: 1.141 -> 1.142
---
Log message:

remove qsort for now

---
Diffs of the changes:  (+0 -9)

 Local.cpp |    9 ---------
 1 files changed, 9 deletions(-)


Index: llvm/lib/Analysis/DataStructure/Local.cpp
diff -u llvm/lib/Analysis/DataStructure/Local.cpp:1.141 llvm/lib/Analysis/DataStructure/Local.cpp:1.142
--- llvm/lib/Analysis/DataStructure/Local.cpp:1.141	Tue Mar 14 21:43:59 2006
+++ llvm/lib/Analysis/DataStructure/Local.cpp	Wed Mar 15 12:32:18 2006
@@ -988,15 +988,6 @@
             N->mergeTypeInfo(Type::DoubleTy, H.getOffset());
           }
           return;
-        } else if (F->getName() == "qsort") {
-          CallSite::arg_iterator AI = CS.arg_begin();
-          if (DSNode *N = getValueDest(**AI).getNode())
-            N->setModifiedMarker();
-          //How do you mark a function pointer as being called?  Assume it is a read
-          AI += 3;
-          if (DSNode *N = getValueDest(**AI).getNode())
-            N->setReadMarker();
-          return;
         } else if (F->getName() == "strcat" || F->getName() == "strncat") {
           //This might be making unsafe assumptions about usage
           //Merge return and first arg






More information about the llvm-commits mailing list