Skip to content

Commit

Permalink
Merge branch 'master' into NewAMDLLVMENv
Browse files Browse the repository at this point in the history
  • Loading branch information
jrbyrnes committed May 27, 2022
2 parents 4aefcc9 + 5df3319 commit 009097b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion example/optsched-cfg/sched.ini
Original file line number Diff line number Diff line change
Expand Up @@ -345,5 +345,5 @@ SHOULD_LIMIT_OCCUPANCY YES
# NONE: do not use limits -- defaults to unlimited
OCCUPANCY_LIMIT_SOURCE FILE

# The value of occupancy (1-10) at which we no longer try to optimize RP
# The value of occupancy (1-10) at which we no longer try to optimize RP
OCCUPANCY_LIMIT 4
2 changes: 1 addition & 1 deletion include/opt-sched/Scheduler/machine_model.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ Last Update: Mar. 2011
#ifndef OPTSCHED_BASIC_MACHINE_MODEL_H
#define OPTSCHED_BASIC_MACHINE_MODEL_H

#include "opt-sched/Scheduler/defines.h"
#include "llvm/ADT/StringRef.h"
// For class ostream.
#include <iostream>
#include "opt-sched/Scheduler/defines.h"
// For class string.
#include <string>
// For class vector.
Expand Down
4 changes: 2 additions & 2 deletions lib/Scheduler/register.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ void llvm::opt_sched::Register::IncrmntCrntLngth() { crntLngth_++; }

void llvm::opt_sched::Register::DcrmntCrntLngth() { crntLngth_--; }

llvm::opt_sched::Register &llvm::opt_sched::Register::
operator=(const llvm::opt_sched::Register &rhs) {
llvm::opt_sched::Register &
llvm::opt_sched::Register::operator=(const llvm::opt_sched::Register &rhs) {
if (this != &rhs) {
num_ = rhs.num_;
type_ = rhs.type_;
Expand Down

0 comments on commit 009097b

Please sign in to comment.