From b43bb63373fbfd0514f685f3cf070b69f6901418 Mon Sep 17 00:00:00 2001 From: Serge Gautherie <32623169+SergeGautherie@users.noreply.github.com> Date: Thu, 4 Mar 2021 23:03:37 +0100 Subject: [PATCH] [COMPILER_APITEST] Sync an '#if defined(_X86_)' (#3318) Addendum to dfccee7 (r41810). --- modules/rostests/apitests/compiler/pseh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/rostests/apitests/compiler/pseh.c b/modules/rostests/apitests/compiler/pseh.c index 61800b17cf6..86184375870 100644 --- a/modules/rostests/apitests/compiler/pseh.c +++ b/modules/rostests/apitests/compiler/pseh.c @@ -2643,7 +2643,7 @@ int call_test(int (* func)(void)) static int ret; static struct volatile_context before, after; static LPTOP_LEVEL_EXCEPTION_FILTER prev_unhandled_exception; -#if !defined(_PSEH3_H_) && !defined(_MSC_VER) +#if defined(_X86_) && !defined(_PSEH3_H_) && !defined(_MSC_VER) static _SEH2Registration_t * prev_frame; _SEH2Registration_t passthrough_frame; #endif