[llvm-commits] [llvm] r79263 - /llvm/trunk/lib/Transforms/Utils/LowerAllocations.cpp
Dan Gohman
gohman at apple.com
Mon Aug 17 11:45:32 PDT 2009
Author: djg
Date: Mon Aug 17 13:45:31 2009
New Revision: 79263
URL: http://llvm.org/viewvc/llvm-project?rev=79263&view=rev
Log:
Update comments to new-style syntax.
Modified:
llvm/trunk/lib/Transforms/Utils/LowerAllocations.cpp
Modified: llvm/trunk/lib/Transforms/Utils/LowerAllocations.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Utils/LowerAllocations.cpp?rev=79263&r1=79262&r2=79263&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Utils/LowerAllocations.cpp (original)
+++ llvm/trunk/lib/Transforms/Utils/LowerAllocations.cpp Mon Aug 17 13:45:31 2009
@@ -29,8 +29,8 @@
STATISTIC(NumLowered, "Number of allocations lowered");
namespace {
- /// LowerAllocations - Turn malloc and free instructions into %malloc and
- /// %free calls.
+ /// LowerAllocations - Turn malloc and free instructions into @malloc and
+ /// @free calls.
///
class VISIBILITY_HIDDEN LowerAllocations : public BasicBlockPass {
Constant *MallocFunc; // Functions in the module we are processing
More information about the llvm-commits
mailing list