summaryrefslogtreecommitdiff
path: root/dev-libs/libpcre/files/libpcre-8.41-sljit_mips-label-statement-fix.patch
blob: 0494ccc25ebc26cba6d23875cb6943e8d1f7d409 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff -Naurp pcre-8.41.orig/sljit/sljitNativeMIPS_common.c pcre-8.41/sljit/sljitNativeMIPS_common.c
--- pcre-8.41.orig/sljit/sljitNativeMIPS_common.c	2017-05-07 11:32:25.000000000 -0400
+++ pcre-8.41/sljit/sljitNativeMIPS_common.c	2017-07-29 17:50:24.508909742 -0400
@@ -503,9 +503,11 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit
 #ifdef SLJIT_IS_FPU_AVAILABLE
 		return SLJIT_IS_FPU_AVAILABLE;
 #elif defined(__GNUC__)
+	{
 		sljit_sw fir;
 		asm ("cfc1 %0, $0" : "=r"(fir));
 		return (fir >> 22) & 0x1;
+	}
 #else
 #error "FIR check is not implemented for this architecture"
 #endif