diff options
| author | Edmund Grimley Evans <Edmund.Grimley.Evans@gmail.com> | 2015-10-31 11:04:52 +0000 |
|---|---|---|
| committer | Edmund Grimley Evans <Edmund.Grimley.Evans@gmail.com> | 2015-10-31 11:04:52 +0000 |
| commit | f4082851eafd7bdec93e4eb7433cfc1f771ffefb (patch) | |
| tree | 412784c93cd7b99944ab1f6809cde899d539133f /tests/Makefile | |
| parent | 35e715a1e3eb9949419c92196a07bde3e281a613 (diff) | |
| download | tinycc-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/Makefile | 3 |
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) |
