projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dabf07c
)
Fix Triple to recognize the 'bfin' arch.
author
Daniel Dunbar
<daniel@zuster.org>
Tue, 18 Aug 2009 07:06:26 +0000
(07:06 +0000)
committer
Daniel Dunbar
<daniel@zuster.org>
Tue, 18 Aug 2009 07:06:26 +0000
(07:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79325
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Support/Triple.cpp
patch
|
blob
|
history
diff --git
a/lib/Support/Triple.cpp
b/lib/Support/Triple.cpp
index e5ee6d5f4562e5925095f466d3fd163ddb550b56..c2982ce66155841918f438371ccd8937ccdfa6ec 100644
(file)
--- 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")