mirror of
https://git.freebsd.org/ports.git
synced 2025-06-05 04:46:28 -04:00
Reviewed by: swills (mentor) Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D12734
20 lines
498 B
C
20 lines
498 B
C
--- runtime/flangrti/trace_lin.c.orig 2017-10-19 11:03:03 UTC
|
|
+++ runtime/flangrti/trace_lin.c
|
|
@@ -85,7 +85,7 @@ static struct sigs sigs[] = {
|
|
{0, CODNULL, NULL} /* end of list */
|
|
};
|
|
|
|
-static gregset_t *regs; /* pointer to regs at signal */
|
|
+static void *regs; /* pointer to regs at signal */
|
|
|
|
/* walk the stack back */
|
|
|
|
@@ -99,7 +99,7 @@ __abort_trace(int skip)
|
|
char **strings;
|
|
size_t i;
|
|
|
|
- if (regs != (gregset_t *)0) {
|
|
+ if (regs != (void *)0) {
|
|
dumpregs(regs);
|
|
}
|
|
|