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

Simon Pilgrim via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed May 8 03:22:39 PDT 2019


This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was automatically updated to reflect the committed changes.
Closed by commit rL360236: [SIMode] Fix typo in Status constructor (authored by RKSimon, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D61595?vs=198286&id=198614#toc

Repository:
  rL LLVM

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

https://reviews.llvm.org/D61595

Files:
  llvm/trunk/lib/Target/AMDGPU/SIModeRegister.cpp


Index: llvm/trunk/lib/Target/AMDGPU/SIModeRegister.cpp
===================================================================
--- llvm/trunk/lib/Target/AMDGPU/SIModeRegister.cpp
+++ llvm/trunk/lib/Target/AMDGPU/SIModeRegister.cpp
@@ -44,7 +44,7 @@
 
   Status() : Mask(0), Mode(0){};
 
-  Status(unsigned Mask, unsigned Mode) : Mask(Mask), Mode(Mode) {
+  Status(unsigned NewMask, unsigned NewMode) : Mask(NewMask), Mode(NewMode) {
     Mode &= Mask;
   };
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D61595.198614.patch
Type: text/x-patch
Size: 456 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190508/b8d1b4dc/attachment.bin>


More information about the llvm-commits mailing list