diff options
author | Victor Hernandez <vhernandez@apple.com> | 2009-10-26 23:43:48 +0000 |
---|---|---|
committer | Victor Hernandez <vhernandez@apple.com> | 2009-10-26 23:43:48 +0000 |
commit | f9a7a33126ed4def13851a4d77a442db55ffe307 (patch) | |
tree | 1dad2445d3c6c08dc6d901e27806df980a7f855a /include/llvm/Analysis/MallocHelper.h | |
parent | 2aec46ede15c195de15bdafc25e9760b6d9b5c52 (diff) | |
download | external_llvm-f9a7a33126ed4def13851a4d77a442db55ffe307.tar.gz external_llvm-f9a7a33126ed4def13851a4d77a442db55ffe307.tar.bz2 external_llvm-f9a7a33126ed4def13851a4d77a442db55ffe307.zip |
Remove FreeInst.
Remove LowerAllocations pass.
Update some more passes to treate free calls just like they were treating FreeInst.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85176 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/MallocHelper.h')
-rw-r--r-- | include/llvm/Analysis/MallocHelper.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/llvm/Analysis/MallocHelper.h b/include/llvm/Analysis/MallocHelper.h index be307c02ae..22cf1b58bb 100644 --- a/include/llvm/Analysis/MallocHelper.h +++ b/include/llvm/Analysis/MallocHelper.h @@ -1,4 +1,4 @@ -//===- llvm/Analysis/MallocHelper.h ---- Identify malloc calls --*- C++ -*-===// +//===- llvm/Analysis/MallocFreeHelper.h - Identify malloc/free --*- C++ -*-===// // // The LLVM Compiler Infrastructure // @@ -8,7 +8,8 @@ //===----------------------------------------------------------------------===// // // This family of functions identifies calls to malloc, bitcasts of malloc -// calls, and the types and array sizes associated with them. +// calls, and the types and array sizes associated with them. It also +// identifies calls to the free builtin. // //===----------------------------------------------------------------------===// |