[clang] [llvm] [win][x64] Unwind v2 3/n: Add support for emitting unwind v2 information (equivalent to MSVC /d2epilogunwind) (PR #129142)

Daniel Paoliello via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 19 11:43:08 PDT 2025


================
@@ -500,7 +500,8 @@ MCSymbol *MCStreamer::emitLineTableLabel() {
 MCSymbol *MCStreamer::emitCFILabel() {
   // Return a dummy non-null value so that label fields appear filled in when
   // generating textual assembly.
-  return (MCSymbol *)1;
+  static size_t DummyLabelValue = 0;
----------------
dpaoliello wrote:

Ok, I removed the map and replaced with a vector, then changed `CurrentEpilog` to point to the `Epilog` object itself (since it was primarily used to index into the map).

https://github.com/llvm/llvm-project/pull/129142


More information about the llvm-commits mailing list