diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2009-04-18 18:11:26 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2009-04-18 18:11:26 +0000 |
commit | fa8ffc10b3edba947d20d5720435179054d8ba29 (patch) | |
tree | 46153912e9540cdbf29c5ae8aa0666248d5a0edd /autoconf | |
parent | f4ccfcb70402b34ee55e0b5820cf287b95a8762f (diff) |
Generalize to support more ARM types.
Configure was not actually regenerated, but the change last time only touched
this one line, so I'm being lazy and cheating by fixing it manually.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@69453 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r-- | autoconf/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 1064763586..a55968956b 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -222,7 +222,7 @@ AC_CACHE_CHECK([target architecture],[llvm_cv_target_arch], powerpc*-*) llvm_cv_target_arch="PowerPC" ;; alpha*-*) llvm_cv_target_arch="Alpha" ;; ia64-*) llvm_cv_target_arch="IA64" ;; - arm-* | armv??-*) llvm_cv_target_arch="ARM" ;; + arm*-*) llvm_cv_target_arch="ARM" ;; mips-*) llvm_cv_target_arch="Mips" ;; pic16-*) llvm_cv_target_arch="PIC16" ;; xcore-*) llvm_cv_target_arch="XCore" ;; |