Skip to content

Drop some triple Ses #213

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 14, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Sources/LLVM/MDBuilder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -413,12 +413,12 @@ extension MDBuilder {
/// - accessType: The type of the accessed value. This is the type that
/// corresponds to the type of the destination value in a `load`
/// instruction, or the type of the source value in a `store` instruction.
/// - offset: The ofset of the memory accesss into the base type. If the
/// - offset: The ofset of the memory access into the base type. If the
/// base type is scalar, this value must be 0.
/// - size: The size of the access in bytes.
/// - immutable: If true, accesses to this memory are never writes.
/// This corresponds to the `const` memory qualifier in C and C++.
/// - Returns: A metadata node representing a TBAA accesss tag.
/// - Returns: A metadata node representing a TBAA access tag.
public func buildTBAAAccessTag(
baseType: MDNode, accessType: MDNode,
offset: Size, size: Size, immutable: Bool = false
Expand Down
2 changes: 1 addition & 1 deletion Sources/LLVM/PassPipeliner.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import llvmshims
/// A `PassPipeliner` handles the creation of a related set of optimization
/// passes called a "pipeline". Grouping passes is done for multiple reasons,
/// chief among them is that optimizer passes are extremely sensitive to their
/// ordering relative to other passses. In addition, pass groupings allow for
/// ordering relative to other passes. In addition, pass groupings allow for
/// the clean segregation of otherwise unrelated passes. For example, a
/// pipeline might consist of "mandatory" passes such as Jump Threading, LICM,
/// and DCE in one pipeline and "diagnostic" passes in another.
Expand Down
2 changes: 1 addition & 1 deletion Sources/LLVM/Triple.swift
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ public struct Triple: Equatable {

/// Normalizes a target triple format string.
///
/// The normalization processs converts an arbitrary machine specification
/// The normalization process converts an arbitrary machine specification
/// into the canonical triple form. In particular, it handles the
/// common case in which otherwise valid components are in the wrong order.
///
Expand Down