mirror of
https://github.com/rhboot/gnu-efi
synced 2026-08-26 00:26:04 -04:00
Move OPTNONE macro to eficompiler.h
This is also useful in downstream projects so add it to public header Signed-off-by: Callum Farmer <gmbr3@opensuse.org>
This commit is contained in:
parent
6f333cfc91
commit
bbffe42b46
2 changed files with 11 additions and 7 deletions
|
|
@ -37,13 +37,7 @@ GetVariable(CHAR16 *var, UINT8 **data, UINTN *len, EFI_GUID owner)
|
|||
EFI_GUID DUMMY_GUID =
|
||||
{0x55aad538, 0x8f82, 0x4e2a, {0xa4,0xf0,0xbe, 0x59, 0x13, 0xb6, 0x5f, 0x1e}};
|
||||
|
||||
#if defined(__clang__)
|
||||
# define _OPTNONE __attribute__((optnone))
|
||||
#else
|
||||
# define _OPTNONE __attribute__((__optimize__("0")))
|
||||
#endif
|
||||
|
||||
static _OPTNONE void
|
||||
static EFI_OPTNONE void
|
||||
DebugHook(void)
|
||||
{
|
||||
EFI_GUID guid = DUMMY_GUID;
|
||||
|
|
|
|||
|
|
@ -28,6 +28,16 @@ Abstract:
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef _MSC_EXTENSIONS
|
||||
#define EFI_OPTNONE
|
||||
#else
|
||||
#ifdef __clang__
|
||||
#define EFI_OPTNONE __attribute__((optnone))
|
||||
#else
|
||||
#define EFI_OPTNONE __attribute__((__optimize__("0")))
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef _MSC_EXTENSIONS
|
||||
#define ALIGN(x) __declspec(align(x))
|
||||
#else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue