summaryrefslogtreecommitdiffstats
path: root/lib/Transforms
diff options
context:
space:
mode:
authorMichael Gottesman <mgottesman@apple.com>2013-01-29 05:05:17 +0000
committerMichael Gottesman <mgottesman@apple.com>2013-01-29 05:05:17 +0000
commit7fd324a31fbfd237f43d38d3a780a19fbf909ba3 (patch)
tree2653c8bebdeb27c28b576272c56169d55283fa39 /lib/Transforms
parent3dcfdab267f157aeb0e6aed896f7acdeb11481ba (diff)
downloadexternal_llvm-7fd324a31fbfd237f43d38d3a780a19fbf909ba3.zip
external_llvm-7fd324a31fbfd237f43d38d3a780a19fbf909ba3.tar.gz
external_llvm-7fd324a31fbfd237f43d38d3a780a19fbf909ba3.tar.bz2
Fixed header comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173773 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r--lib/Transforms/ObjCARC/ObjCARCAPElim.cpp12
1 files changed, 4 insertions, 8 deletions
diff --git a/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp b/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp
index 36cf4e5..f693c3f 100644
--- a/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp
+++ b/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp
@@ -1,4 +1,4 @@
-//===- ObjCARCOpts.cpp - ObjC ARC Optimization ----------------------------===//
+//===- ObjCARCAPElim.cpp - ObjC ARC Optimization --------------------------===//
//
// The LLVM Compiler Infrastructure
//
@@ -7,17 +7,13 @@
//
//===----------------------------------------------------------------------===//
/// \file
+///
/// This file defines ObjC ARC optimizations. ARC stands for Automatic
/// Reference Counting and is a system for managing reference counts for objects
/// in Objective C.
///
-/// The optimizations performed include elimination of redundant, partially
-/// redundant, and inconsequential reference count operations, elimination of
-/// redundant weak pointer operations, pattern-matching and replacement of
-/// low-level operations into higher-level operations, and numerous minor
-/// simplifications.
-///
-/// This file also defines a simple ARC-aware AliasAnalysis.
+/// This specific file implements optimizations which remove extraneous
+/// autorelease pools.
///
/// WARNING: This file knows about certain library functions. It recognizes them
/// by name, and hardwires knowledge of their semantics.