Description: Fixed compilation of test suite on armel.
 The crash was due to a source file disabling FPU emulation.
 However, on armel, FPU emulation is needed as no hardware FPU
 is present.
 .
 This patch removed the compiler flag that disabled the FPU emulation.
 This should not harm, as on other targets, the compiler will by default use
 the hardware FPU.
Author: Abou Al Montacir <abou.almontacir@sfr.fr>

diff --git a/components/lazreport/source/addons/addfunction/frFuncNum.pas b/components/lazreport/source/addons/addfunction/frFuncNum.pas
index 769a340d..75e9c037 100644
--- a/components/lazreport/source/addons/addfunction/frFuncNum.pas
+++ b/components/lazreport/source/addons/addfunction/frFuncNum.pas
@@ -10,7 +10,7 @@ unit frFuncNum;
 
 interface
 
-{$A+,B-,E-,R-}
+{$A+,B-,R-}
 {.$I FR.inc}
 
 uses
