aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
authorEdmund Grimley Evans <Edmund.Grimley.Evans@gmail.com>2015-10-31 11:04:52 +0000
committerEdmund Grimley Evans <Edmund.Grimley.Evans@gmail.com>2015-10-31 11:04:52 +0000
commitf4082851eafd7bdec93e4eb7433cfc1f771ffefb (patch)
tree412784c93cd7b99944ab1f6809cde899d539133f /tests/Makefile
parent35e715a1e3eb9949419c92196a07bde3e281a613 (diff)
downloadtinycc-f4082851eafd7bdec93e4eb7433cfc1f771ffefb.tar.gz
tinycc-f4082851eafd7bdec93e4eb7433cfc1f771ffefb.tar.bz2
Enable variable-length arrays on arm64.
arm64-gen.c: Implement gen_vla_sp_save, gen_vla_sp_restore, gen_vla_alloc. tests/Makefile: Run vla_test on arm64.
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 270eaa7..2b250b0 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -41,8 +41,7 @@ endif
ifeq ($(TARGETOS),Darwin)
TESTS := $(filter-out hello-exe test3 $(BTESTS),$(TESTS))
endif
-ifeq ($(ARCH),i386)
-else ifneq ($(ARCH),x86-64)
+ifeq (,$(filter arm64 i386 x86-64,$(ARCH)))
TESTS := $(filter-out vla_test-run,$(TESTS))
endif
ifeq ($(CONFIG_arm_eabi),yes)