SDL-1.2: Check for ARM SIMD and NEON in testplatform

From b1f43be3e2b91de210a4dcb219325c5609511135 Mon Sep 17 00:00:00 2001
From: Cameron Cawley <[EMAIL REDACTED]>
Date: Tue, 16 Feb 2021 15:42:27 +0000
Subject: [PATCH] Check for ARM SIMD and NEON in testplatform

---
 test/testplatform.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/test/testplatform.c b/test/testplatform.c
index 328a96f2..d8882d12 100644
--- a/test/testplatform.c
+++ b/test/testplatform.c
@@ -138,6 +138,8 @@ int TestCPUInfo(SDL_bool verbose)
 		printf("SSE %s\n", SDL_HasSSE() ? "detected" : "not detected");
 		printf("SSE2 %s\n", SDL_HasSSE2() ? "detected" : "not detected");
 		printf("AltiVec %s\n", SDL_HasAltiVec() ? "detected" : "not detected");
+		printf("ARM SIMD %s\n", SDL_HasARMSIMD() ? "detected" : "not detected");
+		printf("NEON %s\n", SDL_HasNEON() ? "detected" : "not detected");
 	}
 	return(0);
 }