utdebug.c (db6da59cf27b5661ced03754ae0550f8914eda9e) | utdebug.c (7c94858ec17dae9071fa3bdf6b005967b9f146f4) |
---|---|
1// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 2/****************************************************************************** 3 * 4 * Module Name: utdebug - Debug print/trace routines 5 * 6 * Copyright (C) 2000 - 2023, Intel Corp. 7 * 8 *****************************************************************************/ --- 23 unchanged lines hidden (view full) --- 32 * DESCRIPTION: Save the current CPU stack pointer at subsystem startup 33 * 34 ******************************************************************************/ 35 36void acpi_ut_init_stack_ptr_trace(void) 37{ 38 acpi_size current_sp; 39 | 1// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 2/****************************************************************************** 3 * 4 * Module Name: utdebug - Debug print/trace routines 5 * 6 * Copyright (C) 2000 - 2023, Intel Corp. 7 * 8 *****************************************************************************/ --- 23 unchanged lines hidden (view full) --- 32 * DESCRIPTION: Save the current CPU stack pointer at subsystem startup 33 * 34 ******************************************************************************/ 35 36void acpi_ut_init_stack_ptr_trace(void) 37{ 38 acpi_size current_sp; 39 |
40#pragma GCC diagnostic push 41#if defined(__GNUC__) && __GNUC__ >= 12 42#pragma GCC diagnostic ignored "-Wdangling-pointer=" 43#endif |
|
40 acpi_gbl_entry_stack_pointer = ¤t_sp; | 44 acpi_gbl_entry_stack_pointer = ¤t_sp; |
45#pragma GCC diagnostic pop |
|
41} 42 43/******************************************************************************* 44 * 45 * FUNCTION: acpi_ut_track_stack_ptr 46 * 47 * PARAMETERS: None 48 * --- 563 unchanged lines hidden --- | 46} 47 48/******************************************************************************* 49 * 50 * FUNCTION: acpi_ut_track_stack_ptr 51 * 52 * PARAMETERS: None 53 * --- 563 unchanged lines hidden --- |