kernel32/tests: Use ARMv7 for PE images.

This commit is contained in:
André Hentschel 2011-11-01 16:18:52 +01:00 committed by Alexandre Julliard
parent b6169510d2
commit 8f369c9edb
2 changed files with 2 additions and 2 deletions

View File

@ -1758,7 +1758,7 @@ static BOOL create_fake_dll( LPCSTR filename )
#elif defined __sparc__
nt->FileHeader.Machine = IMAGE_FILE_MACHINE_SPARC;
#elif defined __arm__
nt->FileHeader.Machine = IMAGE_FILE_MACHINE_ARM;
nt->FileHeader.Machine = IMAGE_FILE_MACHINE_ARMV7;
#else
# error You must specify the machine type
#endif

View File

@ -57,7 +57,7 @@ static IMAGE_NT_HEADERS nt_header =
#elif defined __sparc__
IMAGE_FILE_MACHINE_SPARC, /* Machine */
#elif defined __arm__
IMAGE_FILE_MACHINE_ARM, /* Machine */
IMAGE_FILE_MACHINE_ARMV7, /* Machine */
#else
# error You must specify the machine type
#endif