mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-22 10:24:26 +00:00
Fixed header comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173773 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -1,4 +1,4 @@
|
|||||||
//===- ObjCARCOpts.cpp - ObjC ARC Optimization ----------------------------===//
|
//===- ObjCARCAPElim.cpp - ObjC ARC Optimization --------------------------===//
|
||||||
//
|
//
|
||||||
// The LLVM Compiler Infrastructure
|
// The LLVM Compiler Infrastructure
|
||||||
//
|
//
|
||||||
@ -7,17 +7,13 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
/// \file
|
/// \file
|
||||||
|
///
|
||||||
/// This file defines ObjC ARC optimizations. ARC stands for Automatic
|
/// This file defines ObjC ARC optimizations. ARC stands for Automatic
|
||||||
/// Reference Counting and is a system for managing reference counts for objects
|
/// Reference Counting and is a system for managing reference counts for objects
|
||||||
/// in Objective C.
|
/// in Objective C.
|
||||||
///
|
///
|
||||||
/// The optimizations performed include elimination of redundant, partially
|
/// This specific file implements optimizations which remove extraneous
|
||||||
/// redundant, and inconsequential reference count operations, elimination of
|
/// autorelease pools.
|
||||||
/// 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.
|
|
||||||
///
|
///
|
||||||
/// WARNING: This file knows about certain library functions. It recognizes them
|
/// WARNING: This file knows about certain library functions. It recognizes them
|
||||||
/// by name, and hardwires knowledge of their semantics.
|
/// by name, and hardwires knowledge of their semantics.
|
||||||
|
Reference in New Issue
Block a user