Update comments to new-style syntax.
authorDan Gohman <gohman@apple.com>
Mon, 17 Aug 2009 18:45:31 +0000 (18:45 +0000)
committerDan Gohman <gohman@apple.com>
Mon, 17 Aug 2009 18:45:31 +0000 (18:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79263 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Utils/LowerAllocations.cpp

index bfeab3775b42930f0a0fe675dbcafd85d3ad1af5..7276d55fc4efb23367752615121452ef1f795fc7 100644 (file)
@@ -29,8 +29,8 @@ using namespace llvm;
 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