Skip to content

Wording and grammar fixes in LLVMOpt.cpp comments #74

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
Dec 3, 2015
Merged
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
10 changes: 5 additions & 5 deletions tools/swift-llvm-opt/LLVMOpt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
///
/// \file
///
/// This is a simple reimplementation of opt that includes support for swift
/// specific llvm passes. It is meant to make it easier to handle issues related
/// This is a simple reimplementation of opt that includes support for Swift-
/// specific LLVM passes. It is meant to make it easier to handle issues related
/// to transitioning to the new LLVM pass manager (which lacks the dynamicism of
/// the old pass manager) and also problems during the code base transition to
/// that pass manager. Additionally it will enable a user to exactly simulates
/// swift's LLVM pass pipeline by using the same pass pipeline building
/// that pass manager. Additionally it will enable a user to exactly simulate
/// Swift's LLVM pass pipeline by using the same pass pipeline building
/// machinery in IRGen, something not possible with opt.
///
//===----------------------------------------------------------------------===//
Expand Down Expand Up @@ -72,7 +72,7 @@ using namespace swift;
// Option Declarations
//===----------------------------------------------------------------------===//

// The OptimizationList is automatically populated with registered Passes by the
// The OptimizationList is automatically populated with registered passes by the
// PassNameParser.
//
static llvm::cl::list<const llvm::PassInfo *, bool, llvm::PassNameParser>
Expand Down