COMPMID-481: Add AArch32 GEMM

Change-Id: Idba0b30bfb27866a46a22388014ab81432ea28dc
Reviewed-on: http://mpd-gerrit.cambridge.arm.com/86196
Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
diff --git a/src/runtime/IScheduler.cpp b/src/runtime/IScheduler.cpp
index 1745764..4292469 100644
--- a/src/runtime/IScheduler.cpp
+++ b/src/runtime/IScheduler.cpp
@@ -135,11 +135,13 @@
             _info.CPU = CPUTarget::A53;
             break;
         default:
-#ifdef __aarch64__
+#ifdef __arm__
+            _info.CPU = CPUTarget::ARMV7;
+#elif __aarch64__
             _info.CPU = CPUTarget::ARMV8;
-#else  /* __aarch64__ */
+#else  /* __arm__ || __aarch64__ */
             _info.CPU = CPUTarget::INTRINSICS;
-#endif /* __aarch64__ */
+#endif /* __arm__ || __aarch64__ */
             break;
     }