From: Jim Grosbach Date: Tue, 12 Oct 2010 18:11:41 +0000 (+0000) Subject: Comment grammar tweakage. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=82635f080c14ee0b979916ffb34f0c8daf08f78c;p=oota-llvm.git Comment grammar tweakage. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116322 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/MC/MCCodeEmitter.h b/include/llvm/MC/MCCodeEmitter.h index 010a2e55662..eac06ede2ab 100644 --- a/include/llvm/MC/MCCodeEmitter.h +++ b/include/llvm/MC/MCCodeEmitter.h @@ -23,7 +23,7 @@ template class SmallVectorImpl; /// MCFixupKindInfo - Target independent information on a fixup kind. struct MCFixupKindInfo { enum FixupKindFlags { - /// Is this fixup kind PCrelative. This is used by the assembler backend to + /// Is this fixup kind PCrelative? This is used by the assembler backend to /// evaluate fixup values in a target independent manner when possible. FKF_IsPCRel = (1 << 0) }; @@ -35,7 +35,7 @@ struct MCFixupKindInfo { /// The bit offset to write the relocation into. // // FIXME: These two fields are under-specified and not general enough, but it - // is covers many things, and is enough to let the AsmStreamer pretty-print + // covers many things. It's enough to let the AsmStreamer pretty-print // the encoding. unsigned TargetOffset;