Update comments to new-style syntax.

llvm-svn: 79263
This commit is contained in:
Dan Gohman 2009-08-17 18:45:31 +00:00
parent 14357fdab5
commit e78d27bcf9

View File

@ -29,8 +29,8 @@ using namespace llvm;
STATISTIC(NumLowered, "Number of allocations lowered"); STATISTIC(NumLowered, "Number of allocations lowered");
namespace { namespace {
/// LowerAllocations - Turn malloc and free instructions into %malloc and /// LowerAllocations - Turn malloc and free instructions into @malloc and
/// %free calls. /// @free calls.
/// ///
class VISIBILITY_HIDDEN LowerAllocations : public BasicBlockPass { class VISIBILITY_HIDDEN LowerAllocations : public BasicBlockPass {
Constant *MallocFunc; // Functions in the module we are processing Constant *MallocFunc; // Functions in the module we are processing