RISC-V: Use MAX instead of std::max [VSETVL PASS]
Obvious fix, Committed. gcc/ChangeLog: * config/riscv/riscv-vsetvl.cc: replace std::max by MAX.
This commit is contained in:
parent
8c5d00f829
commit
e74c37aab5
1 changed files with 2 additions and 2 deletions
|
@ -1668,7 +1668,7 @@ private:
|
|||
}
|
||||
inline void use_max_sew (vsetvl_info &prev, const vsetvl_info &next)
|
||||
{
|
||||
auto max_sew = std::max (prev.get_sew (), next.get_sew ());
|
||||
int max_sew = MAX (prev.get_sew (), next.get_sew ());
|
||||
prev.set_sew (max_sew);
|
||||
use_min_of_max_sew (prev, next);
|
||||
}
|
||||
|
@ -1702,7 +1702,7 @@ private:
|
|||
inline void use_max_sew_and_lmul_with_prev_ratio (vsetvl_info &prev,
|
||||
const vsetvl_info &next)
|
||||
{
|
||||
auto max_sew = std::max (prev.get_sew (), next.get_sew ());
|
||||
int max_sew = MAX (prev.get_sew (), next.get_sew ());
|
||||
prev.set_vlmul (calculate_vlmul (max_sew, prev.get_ratio ()));
|
||||
prev.set_sew (max_sew);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue