Skip to content

Commit c1b01e2

Browse files
authored
Merge pull request #213 from CodaFi/docer
Drop some triple Ses
2 parents d63112e + 0894077 commit c1b01e2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Sources/LLVM/MDBuilder.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,12 +413,12 @@ extension MDBuilder {
413413
/// - accessType: The type of the accessed value. This is the type that
414414
/// corresponds to the type of the destination value in a `load`
415415
/// instruction, or the type of the source value in a `store` instruction.
416-
/// - offset: The ofset of the memory accesss into the base type. If the
416+
/// - offset: The ofset of the memory access into the base type. If the
417417
/// base type is scalar, this value must be 0.
418418
/// - size: The size of the access in bytes.
419419
/// - immutable: If true, accesses to this memory are never writes.
420420
/// This corresponds to the `const` memory qualifier in C and C++.
421-
/// - Returns: A metadata node representing a TBAA accesss tag.
421+
/// - Returns: A metadata node representing a TBAA access tag.
422422
public func buildTBAAAccessTag(
423423
baseType: MDNode, accessType: MDNode,
424424
offset: Size, size: Size, immutable: Bool = false

Sources/LLVM/PassPipeliner.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import llvmshims
99
/// A `PassPipeliner` handles the creation of a related set of optimization
1010
/// passes called a "pipeline". Grouping passes is done for multiple reasons,
1111
/// chief among them is that optimizer passes are extremely sensitive to their
12-
/// ordering relative to other passses. In addition, pass groupings allow for
12+
/// ordering relative to other passes. In addition, pass groupings allow for
1313
/// the clean segregation of otherwise unrelated passes. For example, a
1414
/// pipeline might consist of "mandatory" passes such as Jump Threading, LICM,
1515
/// and DCE in one pipeline and "diagnostic" passes in another.

Sources/LLVM/Triple.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ public struct Triple: Equatable {
187187

188188
/// Normalizes a target triple format string.
189189
///
190-
/// The normalization processs converts an arbitrary machine specification
190+
/// The normalization process converts an arbitrary machine specification
191191
/// into the canonical triple form. In particular, it handles the
192192
/// common case in which otherwise valid components are in the wrong order.
193193
///

0 commit comments

Comments
 (0)