Skip to content
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

Fix codespell nondeterministically breaking #190

Merged
merged 3 commits into from Apr 9, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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