diff options
| author | Michael Gottesman <mgottesman@apple.com> | 2013-01-29 05:05:17 +0000 |
|---|---|---|
| committer | Michael Gottesman <mgottesman@apple.com> | 2013-01-29 05:05:17 +0000 |
| commit | 5a8f9e7c54d5482a7f268cb7dfe3673d542a1ea3 (patch) | |
| tree | f320525e851eea8306e2d51337328d36c39121e0 /llvm/lib/Transforms/ObjCARC | |
| parent | 23a1ee5f5b1f3c0e1585b2fb1572bd01aa92089f (diff) | |
| download | bcm5719-llvm-5a8f9e7c54d5482a7f268cb7dfe3673d542a1ea3.tar.gz bcm5719-llvm-5a8f9e7c54d5482a7f268cb7dfe3673d542a1ea3.zip | |
Fixed header comment.
llvm-svn: 173773
Diffstat (limited to 'llvm/lib/Transforms/ObjCARC')
| -rw-r--r-- | llvm/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/llvm/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp b/llvm/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp index 36cf4e54d5c..f693c3fb385 100644 --- a/llvm/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp +++ b/llvm/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. |

