forked from OSchip/llvm-project
[llvm-dlltool] Map the "arm64" machine type
Differential Revision: https://reviews.llvm.org/D36365 llvm-svn: 310223
This commit is contained in:
parent
ba4431e842
commit
c9263f4e49
|
@ -76,6 +76,7 @@ static MachineTypes getEmulation(StringRef S) {
|
|||
.Case("i386", IMAGE_FILE_MACHINE_I386)
|
||||
.Case("i386:x86-64", IMAGE_FILE_MACHINE_AMD64)
|
||||
.Case("arm", IMAGE_FILE_MACHINE_ARMNT)
|
||||
.Case("arm64", IMAGE_FILE_MACHINE_ARM64)
|
||||
.Default(IMAGE_FILE_MACHINE_UNKNOWN);
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
; RUN: llvm-dlltool -m i386:x86-64 --input-def %s --output-lib %t.a
|
||||
; RUN: llvm-readobj -coff-exports %t.a | FileCheck %s
|
||||
; RUN: llvm-dlltool -m arm64 --input-def %s --output-lib %t.a
|
||||
; RUN: llvm-readobj -coff-exports %t.a | FileCheck %s
|
||||
|
||||
LIBRARY test.dll
|
||||
EXPORTS
|
||||
|
|
Loading…
Reference in New Issue