[PATCH] D43916: Named VReg support for MIR

Puyan Lotfi via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 1 08:59:38 PST 2018


plotfi added inline comments.


================
Comment at: lib/CodeGen/MachineRegisterInfo.cpp:180
+    VRegNames.insert(name);
+    VReg2Name[Reg] = name;
+  }
----------------
I missed a line of critical code here, will add:

+    VReg2Name.grow(Reg);



Repository:
  rL LLVM

https://reviews.llvm.org/D43916





More information about the llvm-commits mailing list