diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-08-18 07:06:26 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-18 07:06:26 +0000 |
commit | b26bc42a2c62a4816647fd9cf4d5e0919bb18f37 (patch) | |
tree | f9874d86f2011d438f3320c3ea04882da7a25138 /lib/Support/Triple.cpp | |
parent | dabf07c70a5e13a4560d75667fa5c7db28921a92 (diff) |
Fix Triple to recognize the 'bfin' arch.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79325 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Triple.cpp')
-rw-r--r-- | lib/Support/Triple.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Support/Triple.cpp b/lib/Support/Triple.cpp index e5ee6d5f45..c2982ce661 100644 --- a/lib/Support/Triple.cpp +++ b/lib/Support/Triple.cpp @@ -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") |