Fix Triple to recognize the 'bfin' arch.

llvm-svn: 79325
This commit is contained in:
Daniel Dunbar 2009-08-18 07:06:26 +00:00
parent 0adae25ec1
commit 33d86f22f2
1 changed files with 2 additions and 0 deletions

View File

@ -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")