Skip to content

Commit

Permalink
Merge pull request #190 from nidhugg/fix-codespell-snafu
Browse files Browse the repository at this point in the history
Fix codespell nondeterministically breaking
  • Loading branch information
margnus1 committed Apr 9, 2024
2 parents 5eaac92 + b595b6f commit ed38326
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
@@ -0,0 +1,7 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every week
interval: "monthly"
2 changes: 1 addition & 1 deletion .github/workflows/codespell.yml
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: codespell-project/actions-codespell@master
- uses: codespell-project/actions-codespell@v2
with:
path: src
ignore_words_list: aci,curev,datas,olt,ot,pevent,te
6 changes: 3 additions & 3 deletions src/POWERARMTraceBuilder.tcc
Expand Up @@ -1000,7 +1000,7 @@ namespace PATB_impl{
}
}

/* Add brances, update relations */
/* Add branches, update relations */
parameters.reserve(parameters.size() + last - first + 1);
for(int i = first; i <= last; ++i){
parameters.push_back(B);
Expand Down Expand Up @@ -1094,7 +1094,7 @@ namespace PATB_impl{
}
}

/* Add brances, update relations */
/* Add branches, update relations */
parameters.reserve(parameters.size() + last - first + 1);
for(int i = last; first <= i; --i){
parameters.push_back(B);
Expand Down Expand Up @@ -2289,7 +2289,7 @@ namespace PATB_impl{
default:
throw std::logic_error("POWERARMTraceBuilder: Unknown type of parameter choice in locked branch.");
}
// Add brances to get_evt(prefix[i]).new_branches except for branches[0]
// Add branches to get_evt(prefix[i]).new_branches except for branches[0]
union_except_one(get_evt(prefix[i]).new_branches,branches);
get_evt(prefix[i]).cur_branch = B;
}
Expand Down
2 changes: 1 addition & 1 deletion src/PartialLoopPurityPass.cpp
Expand Up @@ -1540,7 +1540,7 @@ namespace {
llvm::Instruction *I = findInsertionPoint(L, conj);
if (!I) {
if (cl_plp_dbgp >= 1)
llvm::dbgs() << "Not elimiating loop purity: No valid insertion location found\n";
llvm::dbgs() << "Not eliminating loop purity: No valid insertion location found\n";
continue;
}
if (cl_plp_dbgp >= 1) llvm::dbgs() << " Insertion point: " << *I << "\n";
Expand Down
2 changes: 1 addition & 1 deletion src/RFSCDecisionTree.h
Expand Up @@ -224,7 +224,7 @@ class RFSCDecisionTree final {
public:
RFSCDecisionTree(std::unique_ptr<RFSCScheduler> scheduler)
: scheduler(std::move(scheduler)) {
// Initiallize the work_queue with a "root"-node
// Initialize the work_queue with a "root"-node
this->scheduler->enqueue(std::make_shared<DecisionNode>());
}

Expand Down

0 comments on commit ed38326

Please sign in to comment.