Skip to content

Commit 013a8d7

Browse files
committed
fixup: Documentation comment missing third /
1 parent 6510402 commit 013a8d7

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

lldb/include/lldb/Core/Architecture.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -130,13 +130,13 @@ class Architecture : public PluginInterface {
130130
return false;
131131
}
132132

133-
// Get the vector element order for this architecture. This determines how
134-
// vector elements are indexed. This matters in a few places such as reading/
135-
// writing LLVM-IR values to/from target memory. Some architectures use
136-
// little-endian element ordering where element 0 is at the lowest address
137-
// even when the architecture is otherwise big-endian (e.g. MIPS MSA, ARM
138-
// NEON), but some architectures like PowerPC may use big-endian element
139-
// ordering where element 0 is at the highest address.
133+
/// Get the vector element order for this architecture. This determines how
134+
/// vector elements are indexed. This matters in a few places such as reading/
135+
/// writing LLVM-IR values to/from target memory. Some architectures use
136+
/// little-endian element ordering where element 0 is at the lowest address
137+
/// even when the architecture is otherwise big-endian (e.g. MIPS MSA, ARM
138+
/// NEON), but some architectures like PowerPC may use big-endian element
139+
/// ordering where element 0 is at the highest address.
140140
virtual lldb::ByteOrder GetVectorElementOrder() const {
141141
return lldb::eByteOrderLittle;
142142
}

0 commit comments

Comments
 (0)