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

(-)files/patch-src_common_fpu.cc (+21 lines)
Line 0 Link Here
1
--- src/common/fpu.cc.orig	2019-12-05 16:58:12 UTC
2
+++ src/common/fpu.cc
3
@@ -33,9 +33,7 @@ FPU::FPU ()
4
 
5
 	_flags = Flags (0);
6
 
7
-#ifndef ARCH_X86
8
-	return;
9
-#endif
10
+#ifdef ARCH_X86
11
 	
12
 #ifndef USE_X86_64_ASM
13
 	asm volatile (
14
@@ -108,6 +106,7 @@ FPU::FPU ()
15
 			free (fxbuf);
16
 		}
17
 	}
18
+#endif
19
 }			
20
 
21
 FPU::~FPU ()

Return to bug 242462