Lines Matching full:machine
1 // Check that cvtres properly generates COFF for different machine types. The
2 // only things that changes with machine type are the machine constant listed
9 // > cvtres /machine:X86 /readonly /nologo /out:test_resource.obj.coff \
11 // > cvtres /machine:X64 /readonly /nologo /out:test_resource.obj.coff.x64 \
13 // > cvtres /machine:ARM /readonly /nologo /out:test_resource.obj.coff.x64 \
16 RUN: llvm-cvtres /machine:X86 /out:%t %p/Inputs/test_resource.res
19 RUN: llvm-cvtres /machine:X64 /out:%t %p/Inputs/test_resource.res
22 RUN: llvm-cvtres /machine:ARM /out:%t %p/Inputs/test_resource.res
25 RUN: llvm-cvtres /machine:ARM64 /out:%t %p/Inputs/test_resource.res
28 RUN: llvm-cvtres /machine:ARM64EC /out:%t %p/Inputs/test_resource.res
31 RUN: llvm-cvtres /machine:ARM64X /out:%t %p/Inputs/test_resource.res
34 X86: Machine: IMAGE_FILE_MACHINE_I386 (0x14C)
46 X64: Machine: IMAGE_FILE_MACHINE_AMD64 (0x8664)
58 ARM: Machine: IMAGE_FILE_MACHINE_ARMNT (0x1C4)
70 ARM64: Machine: IMAGE_FILE_MACHINE_ARM64 (0xAA64)
82 ARM64EC: Machine: IMAGE_FILE_MACHINE_ARM64EC (0xA641)
94 ARM64X: Machine: IMAGE_FILE_MACHINE_ARM64X (0xA64E)