Comment grammar tweakage.

llvm-svn: 116322
This commit is contained in:
Jim Grosbach 2010-10-12 18:11:41 +00:00
parent 0e57a9f7a9
commit 503142624c
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ template<typename T> class SmallVectorImpl;
/// MCFixupKindInfo - Target independent information on a fixup kind. /// MCFixupKindInfo - Target independent information on a fixup kind.
struct MCFixupKindInfo { struct MCFixupKindInfo {
enum FixupKindFlags { 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. /// evaluate fixup values in a target independent manner when possible.
FKF_IsPCRel = (1 << 0) FKF_IsPCRel = (1 << 0)
}; };
@ -35,7 +35,7 @@ struct MCFixupKindInfo {
/// The bit offset to write the relocation into. /// The bit offset to write the relocation into.
// //
// FIXME: These two fields are under-specified and not general enough, but it // 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. // the encoding.
unsigned TargetOffset; unsigned TargetOffset;