summaryrefslogtreecommitdiffstats
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
commit169d02f832aafae40af04001acc6d6dcbe28a1eb (patch)
tree881a1b7d077c2db8ec286a52a858b85f39352a3e
parent325096980baf1a9799c6bb6d45c789367553be89 (diff)
downloadbcm5719-llvm-169d02f832aafae40af04001acc6d6dcbe28a1eb.tar.gz
bcm5719-llvm-169d02f832aafae40af04001acc6d6dcbe28a1eb.zip
fixed the missed bracket introduced by checkin rev 225792
llvm-svn: 225796
-rw-r--r--openmp/runtime/tools/src/common-defs.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/openmp/runtime/tools/src/common-defs.mk b/openmp/runtime/tools/src/common-defs.mk
index f8dd75ec73b..252a96266ed 100644
--- a/openmp/runtime/tools/src/common-defs.mk
+++ b/openmp/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)
OpenPOWER on IntegriCloud