From: Alexandros Lamprineas Date: Thu, 16 Jul 2015 14:54:41 +0000 (+0000) Subject: - TargetParser does not handle armv7l in parseArchProfile(). X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e0117a90cf0715459b9a40beff36e45d97bc8e88;p=oota-llvm.git - TargetParser does not handle armv7l in parseArchProfile(). - ARM V7L matches the 'A' profile of ARM architecture. Change-Id: I80c8b973f5c93fb040c177a227644d56b1b83ea8 Phabricator: http://reviews.llvm.org/D11261 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@242406 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/TargetParser.cpp b/lib/Support/TargetParser.cpp index 00cdf2eccdf..e80e942af03 100644 --- a/lib/Support/TargetParser.cpp +++ b/lib/Support/TargetParser.cpp @@ -558,6 +558,7 @@ unsigned ARMTargetParser::parseArchProfile(StringRef Arch) { return ARM::PK_R; case ARM::AK_ARMV7: case ARM::AK_ARMV7A: + case ARM::AK_ARMV7L: case ARM::AK_ARMV8A: case ARM::AK_ARMV8_1A: return ARM::PK_A;