https://git.reactos.org/?p=reactos.git;a=commitdiff;h=b43bb63373fbfd0514f685...
commit b43bb63373fbfd0514f685f3cf070b69f6901418 Author: Serge Gautherie 32623169+SergeGautherie@users.noreply.github.com AuthorDate: Thu Mar 4 23:03:37 2021 +0100 Commit: GitHub noreply@github.com CommitDate: Thu Mar 4 23:03:37 2021 +0100
[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