diff options
Diffstat (limited to 'llvm/lib/Support/Triple.cpp')
-rw-r--r-- | llvm/lib/Support/Triple.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Support/Triple.cpp b/llvm/lib/Support/Triple.cpp index 0407750bf26..e5ee6d5f456 100644 --- a/llvm/lib/Support/Triple.cpp +++ b/llvm/lib/Support/Triple.cpp @@ -130,7 +130,8 @@ void Triple::Parse() const { else if (ArchName == "powerpc64") Arch = ppc64; else if (ArchName == "arm" || - ArchName.startswith("armv")) + ArchName.startswith("armv") || + ArchName == "xscale") Arch = arm; else if (ArchName == "thumb" || ArchName.startswith("thumbv")) |