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 | c0b65305f1e84f803c3caa9ba11f984fdeeb7536 (patch) | |
| tree | 1fe9b24c6f8d3d0d94fcd32c07adc9a1e8a36bf4 /llvm/lib | |
| parent | f49357f81d6a89a337831e79e71c3c0850be4b4c (diff) | |
| download | bcm5719-llvm-c0b65305f1e84f803c3caa9ba11f984fdeeb7536.tar.gz bcm5719-llvm-c0b65305f1e84f803c3caa9ba11f984fdeeb7536.zip | |
remove qsort for now
llvm-svn: 26779
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Analysis/DataStructure/Local.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/llvm/lib/Analysis/DataStructure/Local.cpp b/llvm/lib/Analysis/DataStructure/Local.cpp index 783f87d9744..51f8d885f48 100644 --- a/llvm/lib/Analysis/DataStructure/Local.cpp +++ b/llvm/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 |

