Displaying 2 results from an estimated 2 matches for "m_lower_case".
Did you mean:
  lower_case
  
2019 Feb 20
2
RFC: changing variable naming rules in LLVM codebase
> On Feb 19, 2019, at 7:43 AM, Alex Bradbury via llvm-dev <llvm-dev at lists.llvm.org> wrote:
> 
> On Tue, 19 Feb 2019 at 15:24, Zachary Turner <zturner at google.com> wrote:
>> On Mon, Feb 18, 2019 at 2:16 AM Michael Platings via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>>> 
>>> Regarding a plan for conversion, I'm keen to avoid perfect
2019 Feb 22
11
RFC: changing variable naming rules in LLVM codebase
...kind-of helpful convention 
seems preferable.
So:
- Local variables and formal parameters should be lower_case, with
  one exception: Variables/parameters that have lambda/function
  type should follow the function-name spelling rules.
- Class data members should have an "m_" prefix, so m_lower_case.
- Initialisms and other abbreviations would be considered words for 
  this purpose, so we have names such as:
    tli   // Local variable for TargetLoweringInfo
    m_cgm // Data member for CodeGenModule
- I don't have a good suggestion for file-static/global variables.
  Some people have sug...