mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-18 13:34:04 +00:00
Fix Triple to recognize the 'bfin' arch.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79325 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
dabf07c70a
commit
b26bc42a2c
@ -123,6 +123,8 @@ void Triple::Parse() const {
|
||||
Arch = x86;
|
||||
else if (ArchName == "amd64" || ArchName == "x86_64")
|
||||
Arch = x86_64;
|
||||
else if (ArchName == "bfin")
|
||||
Arch = bfin;
|
||||
else if (ArchName == "pic16")
|
||||
Arch = pic16;
|
||||
else if (ArchName == "powerpc")
|
||||
|
Loading…
x
Reference in New Issue
Block a user