[llvm] [NFC] Remove UnwindTable dependency on CIE, and FDE (PR #142520)

AmirHossein PashaeeHir via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 18 11:44:01 PDT 2025


================
@@ -334,6 +331,12 @@ class UnwindTable {
     assert(Index < size());
     return Rows[Index];
   }
+  void insertRow(const UnwindRow &Row) { Rows.push_back(Row); }
+
+  /// Set the last address that this unwinding table refers to.
+  ///
+  /// This is used when this table is created based on a FDE.
+  void setEndAddress(uint64_t Addr) { EndAddress = Addr; }
 
----------------
amsen20 wrote:

Done.

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


More information about the llvm-commits mailing list