aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2010-10-12 18:11:41 +0000
committerJim Grosbach <grosbach@apple.com>2010-10-12 18:11:41 +0000
commitebb7c807faad6734406fe1a3c79c0f8c26b87bc3 (patch)
tree34364e2cbdeb25416a94e3b5a837bf00aaeb5633
parent96d02f96f26f3230c288cb6858c7e07601821dae (diff)
downloadexternal_llvm-ebb7c807faad6734406fe1a3c79c0f8c26b87bc3.zip
external_llvm-ebb7c807faad6734406fe1a3c79c0f8c26b87bc3.tar.gz
external_llvm-ebb7c807faad6734406fe1a3c79c0f8c26b87bc3.tar.bz2
Comment grammar tweakage.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116322 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/MC/MCCodeEmitter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/MC/MCCodeEmitter.h b/include/llvm/MC/MCCodeEmitter.h
index 010a2e5..eac06ed 100644
--- a/include/llvm/MC/MCCodeEmitter.h
+++ b/include/llvm/MC/MCCodeEmitter.h
@@ -23,7 +23,7 @@ template<typename T> 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;