aboutsummaryrefslogtreecommitdiff
path: root/runtime/tools
diff options
context:
space:
mode:
authorAndrey Churbanov <Andrey.Churbanov@intel.com>2015-01-13 15:16:49 +0000
committerAndrey Churbanov <Andrey.Churbanov@intel.com>2015-01-13 15:16:49 +0000
commit7680d2964f40fac0bbe07f624d369e388985d9e5 (patch)
treec7e251aa83d363cd0e19c7c9927557716d42a961 /runtime/tools
parent9dd2dbbb70022a0aa1b028725740edd764e28b65 (diff)
fixed the missed bracket introduced by checkin rev 225792
git-svn-id: https://llvm.org/svn/llvm-project/openmp/trunk@225796 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime/tools')
-rw-r--r--runtime/tools/src/common-defs.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/tools/src/common-defs.mk b/runtime/tools/src/common-defs.mk
index f8dd75e..252a962 100644
--- a/runtime/tools/src/common-defs.mk
+++ b/runtime/tools/src/common-defs.mk
@@ -45,7 +45,7 @@ endif
# Description:
# The function return printable name of specified architecture, IA-32 architecture or Intel(R) 64.
#
-legal_arch = $(if $(filter 32,$(1)),IA-32,$(if $(filter 32e,$(1)),Intel(R) 64,$(if $(filter l1,$(1)),L1OM,$(if $(filter arm,$(1)),ARM,$(if $(filter ppc64,$(1)),PPC64,$(if $(filter aarch64,$(1)),AArch64,$(error Bad architecture specified: $(1)))))))
+legal_arch = $(if $(filter 32,$(1)),IA-32,$(if $(filter 32e,$(1)),Intel(R) 64,$(if $(filter l1,$(1)),L1OM,$(if $(filter arm,$(1)),ARM,$(if $(filter ppc64,$(1)),PPC64,$(if $(filter aarch64,$(1)),AArch64,$(error Bad architecture specified: $(1))))))))
# Synopsis:
# var_name = $(call check_variable,var,list)