Fix some comment typos.

llvm-svn: 179132
This commit is contained in:
Bob Wilson 2013-04-09 22:15:51 +00:00
parent c47f2d3ea3
commit 798a7709fc
1 changed files with 2 additions and 2 deletions

View File

@ -373,7 +373,7 @@ static Sequence MergeSeqs(Sequence A, Sequence B, bool TopDown) {
namespace {
/// \brief Unidirectional information about either a
/// retain-decrement-use-release sequence or release-use-decrement-retain
/// reverese sequence.
/// reverse sequence.
struct RRInfo {
/// After an objc_retain, the reference count of the referenced
/// object is known to be positive. Similarly, before an objc_release, the
@ -430,7 +430,7 @@ namespace {
/// True if the reference count is known to be incremented.
bool KnownPositiveRefCount;
/// True of we've seen an opportunity for partial RR elimination, such as
/// True if we've seen an opportunity for partial RR elimination, such as
/// pushing calls into a CFG triangle or into one side of a CFG diamond.
bool Partial;