diff options
author | Alexandros Lamprineas <alexandros.lamprineas@arm.com> | 2015-07-16 14:54:41 +0000 |
---|---|---|
committer | Alexandros Lamprineas <alexandros.lamprineas@arm.com> | 2015-07-16 14:54:41 +0000 |
commit | 0e20b8dc9338903faaed3f2326635a40cf9edc19 (patch) | |
tree | a697c942fb567c590278a255cd19fd5530660906 /llvm/lib/Support/TargetParser.cpp | |
parent | c6dd273a989f995750c5e5a1ef06647477ac37e1 (diff) | |
download | bcm5719-llvm-0e20b8dc9338903faaed3f2326635a40cf9edc19.tar.gz bcm5719-llvm-0e20b8dc9338903faaed3f2326635a40cf9edc19.zip |
- 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
llvm-svn: 242406
Diffstat (limited to 'llvm/lib/Support/TargetParser.cpp')
-rw-r--r-- | llvm/lib/Support/TargetParser.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Support/TargetParser.cpp b/llvm/lib/Support/TargetParser.cpp index 00cdf2eccdf..e80e942af03 100644 --- a/llvm/lib/Support/TargetParser.cpp +++ b/llvm/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; |