diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2006-03-15 18:32:18 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2006-03-15 18:32:18 +0000 |
commit | 3299cae13574165106ad13f930ab3ad7b30a3e51 (patch) | |
tree | c90eb215fd103eada875bbfebc50bc66e99c612d /lib/Analysis/DataStructure | |
parent | 513d19b6a122219967d7671710488659d3e4a00d (diff) |
remove qsort for now
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26779 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure')
-rw-r--r-- | lib/Analysis/DataStructure/Local.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/Analysis/DataStructure/Local.cpp b/lib/Analysis/DataStructure/Local.cpp index 783f87d974..51f8d885f4 100644 --- a/lib/Analysis/DataStructure/Local.cpp +++ b/lib/Analysis/DataStructure/Local.cpp @@ -988,15 +988,6 @@ void GraphBuilder::visitCallSite(CallSite CS) { 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 |