From efd7919618d59bd0e3fcf861cc0d1eacbbed0ac6 Mon Sep 17 00:00:00 2001 From: Sean Callanan Date: Sat, 30 Jul 2011 01:29:54 +0000 Subject: [PATCH] Added several architecture names. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136552 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/Triple.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Support/Triple.cpp b/lib/Support/Triple.cpp index ae7640a63ca..05e1f922199 100644 --- a/lib/Support/Triple.cpp +++ b/lib/Support/Triple.cpp @@ -205,7 +205,8 @@ Triple::ArchType Triple::getArchTypeForDarwinArchName(StringRef Str) { // This is derived from the driver driver. if (Str == "arm" || Str == "armv4t" || Str == "armv5" || Str == "xscale" || - Str == "armv6" || Str == "armv7") + Str == "armv6" || Str == "armv7" || Str == "armv7f" || Str == "armv7k" || + Str == "armv7s") return Triple::arm; if (Str == "ptx32")