mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-06 20:32:19 +00:00
the x86 version of the name is x86-64, not x86_64. Handle this properly
in getArchTypeForLLVMName. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78799 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9249a9241d
commit
b796c4fde4
@ -99,7 +99,7 @@ Triple::ArchType Triple::getArchTypeForLLVMName(const StringRef &Name) {
|
||||
return thumb;
|
||||
if (Name == "x86")
|
||||
return x86;
|
||||
if (Name == "x86_64")
|
||||
if (Name == "x86-64")
|
||||
return x86_64;
|
||||
if (Name == "xcore")
|
||||
return xcore;
|
||||
|
Loading…
Reference in New Issue
Block a user