diff options
Diffstat (limited to 'llvm/lib/Support/Triple.cpp')
| -rw-r--r-- | llvm/lib/Support/Triple.cpp | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Support/Triple.cpp b/llvm/lib/Support/Triple.cpp index e5ee6d5..c2982ce 100644 --- a/llvm/lib/Support/Triple.cpp +++ b/llvm/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")  | 
