[PATCH] D61595: [SIMode] Fix typo in Status constructor

Matt Arsenault via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon May 6 07:31:12 PDT 2019


arsenm added inline comments.


================
Comment at: lib/Target/AMDGPU/SIModeRegister.cpp:47
 
-  Status(unsigned Mask, unsigned Mode) : Mask(Mask), Mode(Mode) {
+  Status(unsigned _Mask, unsigned _Mode) : Mask(_Mask), Mode(_Mode) {
     Mode &= Mask;
----------------
Should use something other than a leading underscore to disambiguate


Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D61595/new/

https://reviews.llvm.org/D61595





More information about the llvm-commits mailing list