diff options
| author | Dan Gohman <gohman@apple.com> | 2007-08-27 16:11:48 +0000 | 
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2007-08-27 16:11:48 +0000 | 
| commit | 71eaf62e5f0b99fb4b25963dc5cdcdd2c222e771 (patch) | |
| tree | 2e4e1e699e184002a3a8c194c61e420c88499b5d | |
| parent | ef5a654216fad9bb4a7f8272d126064731ce943c (diff) | |
| download | bcm5719-llvm-71eaf62e5f0b99fb4b25963dc5cdcdd2c222e771.tar.gz bcm5719-llvm-71eaf62e5f0b99fb4b25963dc5cdcdd2c222e771.zip  | |
Change comments to refer to @malloc and @free instead of %malloc and %free.
llvm-svn: 41488
| -rw-r--r-- | llvm/lib/Transforms/IPO/RaiseAllocations.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/IPO/RaiseAllocations.cpp b/llvm/lib/Transforms/IPO/RaiseAllocations.cpp index 5d2d9dd75c7..ed4a3769dbe 100644 --- a/llvm/lib/Transforms/IPO/RaiseAllocations.cpp +++ b/llvm/lib/Transforms/IPO/RaiseAllocations.cpp @@ -1,4 +1,4 @@ -//===- RaiseAllocations.cpp - Convert %malloc & %free calls to insts ------===// +//===- RaiseAllocations.cpp - Convert @malloc & @free calls to insts ------===//  //  //                     The LLVM Compiler Infrastructure  // @@ -28,7 +28,7 @@ using namespace llvm;  STATISTIC(NumRaised, "Number of allocations raised");  namespace { -  // RaiseAllocations - Turn %malloc and %free calls into the appropriate +  // RaiseAllocations - Turn @malloc and @free calls into the appropriate    // instruction.    //    class VISIBILITY_HIDDEN RaiseAllocations : public ModulePass { @@ -65,7 +65,7 @@ ModulePass *llvm::createRaiseAllocationsPass() {  // free functions.  If this is the case, grab the method pointers that the  // module is using.  // -// Lookup %malloc and %free in the symbol table, for later use.  If they don't +// Lookup @malloc and @free in the symbol table, for later use.  If they don't  // exist, or are not external, we do not worry about converting calls to that  // function into the appropriate instruction.  //  | 

