From: Richard Sandiford Date: Fri, 15 Jan 2021 16:45:40 +0000 (+0000) Subject: rtl-ssa: Fix a silly typo X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7f6cdaa9a8da173ab9e93009f5b7ff427c7f964d;p=gcc.git rtl-ssa: Fix a silly typo s/ref/reg/ on a previously unused function name. gcc/ * rtl-ssa/functions.h (function_info::ref_defs): Rename to... (function_info::reg_defs): ...this. * rtl-ssa/member-fns.inl (function_info::ref_defs): Rename to... (function_info::reg_defs): ...this. --- diff --git a/gcc/rtl-ssa/functions.h b/gcc/rtl-ssa/functions.h index 25896fc1138..f64bd3f290a 100644 --- a/gcc/rtl-ssa/functions.h +++ b/gcc/rtl-ssa/functions.h @@ -100,7 +100,7 @@ public: // Return a list of all definitions of register REGNO, in reverse postorder. // This includes both real stores by instructions and artificial // definitions by things like phi nodes. - iterator_range ref_defs (unsigned int regno) const; + iterator_range reg_defs (unsigned int regno) const; // Check if all uses of register REGNO are either unconditionally undefined // or use the same single dominating definition. Return the definition diff --git a/gcc/rtl-ssa/member-fns.inl b/gcc/rtl-ssa/member-fns.inl index 4b3eacbd4b4..e1ab7d1ba84 100644 --- a/gcc/rtl-ssa/member-fns.inl +++ b/gcc/rtl-ssa/member-fns.inl @@ -883,7 +883,7 @@ function_info::mem_defs () const } inline iterator_range -function_info::ref_defs (unsigned int regno) const +function_info::reg_defs (unsigned int regno) const { return { m_defs[regno + 1], nullptr }; }