diff options
author | Dan Gohman <gohman@apple.com> | 2009-08-17 18:45:31 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-08-17 18:45:31 +0000 |
commit | d802f7e29067a33c2e9db841d5b8052ef474d856 (patch) | |
tree | 89427d2d78e4d1afa4e8ce04383493e53c20b1c5 | |
parent | 5d17eddb0cc07c13acbb38205778db7678a65065 (diff) |
Update comments to new-style syntax.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79263 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Utils/LowerAllocations.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/Utils/LowerAllocations.cpp b/lib/Transforms/Utils/LowerAllocations.cpp index bfeab3775b..7276d55fc4 100644 --- a/lib/Transforms/Utils/LowerAllocations.cpp +++ b/lib/Transforms/Utils/LowerAllocations.cpp @@ -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 |