View | Details | Raw Unified | Return to bug 225693
Collapse All | Expand All

(-)files/patch-common__arm.h (-1 / +5 lines)
Lines 1-6 Link Here
1
--- common_arm.h.orig	2016-09-01 03:58:42 UTC
1
--- common_arm.h.orig	2016-09-01 03:58:42 UTC
2
+++ common_arm.h
2
+++ common_arm.h
3
@@ -93,6 +93,13 @@ static inline int blas_quickdivide(blasi
3
@@ -93,6 +93,17 @@ static inline int blas_quickdivide(blasint x, blasint
4
 
4
 
5
 #endif
5
 #endif
6
 
6
 
Lines 10-15 Link Here
10
+#define fnmacd vmls.f64
10
+#define fnmacd vmls.f64
11
+#define fnmuls vnmul.f32
11
+#define fnmuls vnmul.f32
12
+#define fnmuld vnmul.f64
12
+#define fnmuld vnmul.f64
13
+#define fldmias vldmia
14
+#define fstmias vstmia
15
+#define fldmiad vldmia
16
+#define fstmiad vstmia
13
+#endif
17
+#endif
14
 
18
 
15
 #ifndef F_INTERFACE
19
 #ifndef F_INTERFACE
(-)files/patch-cpuid__arm.c (-1 / +5 lines)
Lines 1-12 Link Here
1
--- cpuid_arm.c.orig	2016-09-01 03:58:42 UTC
1
--- cpuid_arm.c.orig	2016-09-01 03:58:42 UTC
2
+++ cpuid_arm.c
2
+++ cpuid_arm.c
3
@@ -181,7 +181,8 @@ int detect(void)
3
@@ -181,7 +181,12 @@ int detect(void)
4
 	  }
4
 	  }
5
 
5
 
6
 	}
6
 	}
7
-
7
-
8
+#else
8
+#else
9
+#if (__ARM_ARCH == 7)
10
+	return CPU_ARMV7;
11
+#else
9
+	return CPU_ARMV6;
12
+	return CPU_ARMV6;
13
+#endif
10
 #endif
14
 #endif
11
 
15
 
12
 	return CPU_UNKNOWN;
16
 	return CPU_UNKNOWN;

Return to bug 225693