[PATCH] D38110: [libunwind][MIPS]: Add support for unwinding in O32 and N64 processes.

Simon Dardis via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Tue Oct 10 12:41:22 PDT 2017


sdardis added a comment.

Thanks for the pointer to that patch, I'll take a look tomorrow.



================
Comment at: src/UnwindRegistersRestore.S:492
 
+#elif defined(__mips__) && _MIPS_SIM == _ABIO32
+
----------------
Needs checking for soft-float.


================
Comment at: src/UnwindRegistersRestore.S:543
+
+#elif defined(__mips__) && _MIPS_SIM == _ABI64
+
----------------
Needs checking for soft-float.


================
Comment at: src/UnwindRegistersSave.S:90
 
+#elif defined(__mips__) && _MIPS_SIM == _ABIO32
+
----------------
Needs checking for soft-float.


================
Comment at: src/UnwindRegistersSave.S:125
+
+#elif defined(__mips__) && _MIPS_SIM == _ABI64
+
----------------
Needs checking for soft-float.


https://reviews.llvm.org/D38110





More information about the cfe-commits mailing list