diff options
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 c4792e3efd..8b482473a5 100644 --- a/lib/Support/Triple.cpp +++ b/lib/Support/Triple.cpp @@ -186,6 +186,8 @@ void Triple::Parse() const { Arch = systemz; else if (ArchName == "tce") Arch = tce; + else if (ArchName == "xcore") + Arch = xcore; else Arch = UnknownArch; |