Author: djg Date: Mon Aug 27 11:11:48 2007 New Revision: 41488 URL: http://llvm.org/viewvc/llvm-project?rev=41488&view=rev Log: Change comments to refer to @malloc and @free instead of %malloc and %free.
Modified: llvm/trunk/lib/Transforms/IPO/RaiseAllocations.cpp Modified: llvm/trunk/lib/Transforms/IPO/RaiseAllocations.cpp URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/IPO/RaiseAllocations.cpp?rev=41488&r1=41487&r2=41488&view=diff ============================================================================== --- llvm/trunk/lib/Transforms/IPO/RaiseAllocations.cpp (original) +++ llvm/trunk/lib/Transforms/IPO/RaiseAllocations.cpp Mon Aug 27 11:11:48 2007 @@ -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 @@ 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 @@ // 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. // _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits