summaryrefslogtreecommitdiff
path: root/lib/Transforms
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-08-17 18:45:31 +0000
committerDan Gohman <gohman@apple.com>2009-08-17 18:45:31 +0000
commitd802f7e29067a33c2e9db841d5b8052ef474d856 (patch)
tree89427d2d78e4d1afa4e8ce04383493e53c20b1c5 /lib/Transforms
parent5d17eddb0cc07c13acbb38205778db7678a65065 (diff)
downloadllvm-d802f7e29067a33c2e9db841d5b8052ef474d856.tar.gz
llvm-d802f7e29067a33c2e9db841d5b8052ef474d856.tar.bz2
llvm-d802f7e29067a33c2e9db841d5b8052ef474d856.tar.xz
Update comments to new-style syntax.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79263 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r--lib/Transforms/Utils/LowerAllocations.cpp4
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