Lines Matching +full:cortex +full:- +full:m
2 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4 Subject: [PATCH] arm: fix build on Thumb-only architectures
6 Building tinymembench for ARM Cortex-M currently fails, because the
7 arm-neon.S file contains ARM code that doesn't build on Thumb-only
8 architectures. To account for this and fix the build for Cortex-M,
13 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 ---
15 arm-neon.S | 2 +-
16 asm-opt.c | 2 +-
17 2 files changed, 2 insertions(+), 2 deletions(-)
19 diff --git a/arm-neon.S b/arm-neon.S
21 --- a/arm-neon.S
22 +++ b/arm-neon.S
23 @@ -21,7 +21,7 @@
27 -#ifdef __arm__
32 diff --git a/asm-opt.c b/asm-opt.c
34 --- a/asm-opt.c
35 +++ b/asm-opt.c
36 @@ -202,7 +202,7 @@ bench_info *get_asm_framebuffer_benchmarks(void)
40 -#elif defined(__arm__)
43 #include "arm-neon.h"
45 --