2024-08-12 21:16:04 +00:00
|
|
|
Index: acpica-unix2-20240321/source/components/utilities/utdebug.c
|
|
|
|
===================================================================
|
|
|
|
--- acpica-unix2-20240321.orig/source/components/utilities/utdebug.c
|
|
|
|
+++ acpica-unix2-20240321/source/components/utilities/utdebug.c
|
|
|
|
@@ -58,6 +58,10 @@ static const char *AcpiGbl_Fun
|
2022-03-18 22:09:50 +00:00
|
|
|
static const char *AcpiGbl_FunctionExitPrefix = "----Exit-";
|
|
|
|
|
|
|
|
|
|
|
|
+#if defined(__GNUC__) && (__GNUC__ > 11)
|
|
|
|
+#pragma GCC diagnostic push
|
|
|
|
+#pragma GCC diagnostic ignored "-Wdangling-pointer"
|
|
|
|
+#endif
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AcpiUtInitStackPtrTrace
|
2024-08-12 21:16:04 +00:00
|
|
|
@@ -120,6 +124,9 @@ AcpiUtTrackStackPtr (
|
2022-03-18 22:09:50 +00:00
|
|
|
AcpiGbl_DeepestNesting = AcpiGbl_NestingLevel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
+#if defined(__GNUC__) && (__GNUC__ > 11)
|
|
|
|
+#pragma GCC diagnostic pop
|
|
|
|
+#endif
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|