summaryrefslogtreecommitdiffstats
path: root/lib/XRay
diff options
context:
space:
mode:
authorSimon Pilgrim <llvm-dev@redking.me.uk>2017-03-30 12:59:53 +0000
committerSimon Pilgrim <llvm-dev@redking.me.uk>2017-03-30 12:59:53 +0000
commit428e69317e7a7875d204a6228b12d6c70db7fc9f (patch)
tree9ec622055595eab63bac589b8a80ad593ed09af2 /lib/XRay
parentcac5a6fb064160dde67941a9ab545794a1942163 (diff)
Spelling mistakes in comments. NFCI.
Based on corrections mentioned in patch for clang for PR27635 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@299072 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/XRay')
-rw-r--r--lib/XRay/Trace.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/XRay/Trace.cpp b/lib/XRay/Trace.cpp
index 5f64a5da144c..90be4a916029 100644
--- a/lib/XRay/Trace.cpp
+++ b/lib/XRay/Trace.cpp
@@ -332,7 +332,7 @@ Error processFDRFunctionRecord(FDRState &State, uint8_t RecordFirstByte,
/// The following is an attempt to document the grammar of the format, which is
/// parsed by this function for little-endian machines. Since the format makes
/// use of BitFields, when we support big-Endian architectures, we will need to
-/// adjust not only the endianess parameter to llvm's RecordExtractor, but also
+/// adjust not only the endianness parameter to llvm's RecordExtractor, but also
/// the bit twiddling logic, which is consistent with the little-endian
/// convention that BitFields within a struct will first be packed into the
/// least significant bits the address they belong to.