Corrected compilation warnings.

pull/75/head
Christophe Favergeon 3 years ago
parent 9c425b04b9
commit 25c3fa3c02

@ -34,7 +34,7 @@ template<typename IN,int windowSize, int overlap>
class OverlapAdd: public GenericNode<IN,windowSize,IN,windowSize-overlap>
{
public:
OverlapAdd(FIFOBase<IN> &src,FIFOBase<IN> &dst):GenericNode<IN,windowSize,IN,overlap>(src,dst)
OverlapAdd(FIFOBase<IN> &src,FIFOBase<IN> &dst):GenericNode<IN,windowSize,IN,windowSize-overlap>(src,dst)
{
static_assert((windowSize-overlap)>0, "Overlap is too big");
memory.resize(overlap);

@ -58,7 +58,6 @@ void arm_absmax_no_idx_q15(
q15_t const *pSrcVec;
uint16x8_t curExtremValVec = vdupq_n_u16(Q15_ABSMIN);
uint16_t maxValue = Q15_ABSMIN;
mve_pred16_t p0;
pSrcVec = (q15_t const *) pSrc;

@ -58,7 +58,6 @@ void arm_absmax_no_idx_q31(
q31_t const *pSrcVec;
uint32x4_t curExtremValVec = vdupq_n_u32(Q31_ABSMIN);
uint32_t maxValue = Q31_ABSMIN;
mve_pred16_t p0;
pSrcVec = (q31_t const *) pSrc;

@ -62,7 +62,6 @@ void arm_absmax_no_idx_q7(
q7_t const *pSrcVec;
uint8x16_t curExtremValVec = vdupq_n_u8(Q7_ABSMIN);
uint8_t maxValue = Q7_ABSMIN;
mve_pred16_t p0;
pSrcVec = (q7_t const *) pSrc;

@ -923,4 +923,5 @@ a double precision computation.
void StatsTestsQ31::tearDown(Testing::testID_t id,Client::PatternMgr *mgr)
{
(void)id;
(void)mgr;
}

@ -1,7 +1,7 @@
ECHO OFF
ECHO "Gen Test"
cd ..
python processTests.py -f Output.pickle -e SupportBarTestsF32
python processTests.py -f Output.pickle -e StatsTests
cd cmsis_build
ECHO "Build"

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<cprj schemaVersion="1.0.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
<created timestamp="2022-11-03T11:17:34" tool="csolution 1.1.0"/>
<created timestamp="2022-11-03T14:24:00" tool="csolution 1.1.0"/>
<info isLayer="false">
<description>Automatically generated project</description>
@ -17,8 +17,8 @@
<target Dfpu="DP_FPU" Dname="ARMCA5" Dsecure="Non-secure" Dvendor="ARM:82">
<output intdir="tmp/test/FVP_A5Neon/Release" name="test.Release+FVP_A5Neon" outdir="out/test/FVP_A5Neon/Release" rtedir="RTE" type="exe"/>
<asflags add="-masm=auto" compiler="AC6"/>
<cflags add="-std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<cflags add="-Wsign-compare -Wdouble-promotion -DNDEBUG -Wall -Wextra -Werror -std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-fno-rtti -DNDEBUG -Wall -Wextra -std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<ldflags add="--entry=Reset_Handler --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="AC6" file="RTE/Device/ARMCA5/ARMCA5.sct"/>
<defines>EMBEDDED;NORMALFVP;CORTEXA</defines>
<includes>../../Include;../../PrivateInclude;../FrameworkInclude;../GeneratedInclude;../Include/Tests</includes>

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<cprj schemaVersion="1.0.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
<created timestamp="2022-11-03T11:17:34" tool="csolution 1.1.0"/>
<created timestamp="2022-11-03T14:24:00" tool="csolution 1.1.0"/>
<info isLayer="false">
<description>Automatically generated project</description>
@ -17,8 +17,8 @@
<target Dfpu="DP_FPU" Dname="ARMCA7" Dsecure="Non-secure" Dvendor="ARM:82">
<output intdir="tmp/test/FVP_A7Neon/Release" name="test.Release+FVP_A7Neon" outdir="out/test/FVP_A7Neon/Release" rtedir="RTE" type="exe"/>
<asflags add="-masm=auto" compiler="AC6"/>
<cflags add="-std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<cflags add="-Wsign-compare -Wdouble-promotion -DNDEBUG -Wall -Wextra -Werror -std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-fno-rtti -DNDEBUG -Wall -Wextra -std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<ldflags add="--entry=Reset_Handler --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="AC6" file="RTE/Device/ARMCA7/ARMCA7.sct"/>
<defines>EMBEDDED;NORMALFVP;CORTEXA</defines>
<includes>../../Include;../../PrivateInclude;../FrameworkInclude;../GeneratedInclude;../Include/Tests</includes>

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<cprj schemaVersion="1.0.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
<created timestamp="2022-11-03T11:17:34" tool="csolution 1.1.0"/>
<created timestamp="2022-11-03T14:24:01" tool="csolution 1.1.0"/>
<info isLayer="false">
<description>Automatically generated project</description>
@ -17,8 +17,8 @@
<target Dfpu="DP_FPU" Dname="ARMCA9" Dsecure="Non-secure" Dvendor="ARM:82">
<output intdir="tmp/test/FVP_A9Neon/Release" name="test.Release+FVP_A9Neon" outdir="out/test/FVP_A9Neon/Release" rtedir="RTE" type="exe"/>
<asflags add="-masm=auto" compiler="AC6"/>
<cflags add="-std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<cflags add="-Wsign-compare -Wdouble-promotion -DNDEBUG -Wall -Wextra -Werror -std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-fno-rtti -DNDEBUG -Wall -Wextra -std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<ldflags add="--entry=Reset_Handler --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="AC6" file="RTE/Device/ARMCA9/ARMCA9.sct"/>
<defines>EMBEDDED;NORMALFVP;CORTEXA</defines>
<includes>../../Include;../../PrivateInclude;../FrameworkInclude;../GeneratedInclude;../Include/Tests</includes>

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<cprj schemaVersion="1.0.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
<created timestamp="2022-11-03T11:17:34" tool="csolution 1.1.0"/>
<created timestamp="2022-11-03T14:24:01" tool="csolution 1.1.0"/>
<info isLayer="false">
<description>Automatically generated project</description>
@ -17,8 +17,8 @@
<target Ddsp="DSP" Dfpu="DP_FPU" Dmve="FP_MVE" Dname="ARMCM55" Dsecure="Non-secure" Dtz="TZ" Dvendor="ARM:82">
<output intdir="tmp/test/FVP_M55/Release" name="test.Release+FVP_M55" outdir="out/test/FVP_M55/Release" rtedir="RTE" type="exe"/>
<asflags add="-masm=auto" compiler="AC6"/>
<cflags add="-std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<cflags add="-Wsign-compare -Wdouble-promotion -DNDEBUG -Wall -Wextra -Werror -std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-fno-rtti -DNDEBUG -Wall -Wextra -std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<ldflags add="--entry=Reset_Handler --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="AC6" file="RTE/Device/ARMCM55/ARMCM55_ac6.sct"/>
<defines>EMBEDDED;NORMALFVP;CORTEXM</defines>
<includes>../../Include;../../PrivateInclude;../FrameworkInclude;../GeneratedInclude;../Include/Tests</includes>

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<cprj schemaVersion="1.0.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
<created timestamp="2022-11-03T11:17:34" tool="csolution 1.1.0"/>
<created timestamp="2022-11-03T14:24:01" tool="csolution 1.1.0"/>
<info isLayer="false">
<description>Automatically generated project</description>
@ -18,8 +18,8 @@
<target Ddsp="DSP" Dfpu="DP_FPU" Dmve="FP_MVE" Dname="SSE-300-MPS3" Dsecure="Non-secure" Dtz="TZ" Dvendor="ARM:82">
<output intdir="tmp/test/VHT-Corstone-300/Release" name="test.Release+VHT-Corstone-300" outdir="out/test/VHT-Corstone-300/Release" rtedir="RTE" type="exe"/>
<asflags add="-masm=auto" compiler="AC6"/>
<cflags add="-std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<cflags add="-Wsign-compare -Wdouble-promotion -DNDEBUG -Wall -Wextra -Werror -std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-fno-rtti -DNDEBUG -Wall -Wextra -std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<ldflags add="--entry=Reset_Handler --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="AC6" file="RTE/Device/SSE-300-MPS3/fvp_sse300_mps3_s.sct"/>
<defines>EMBEDDED;NORMALFVP;CORTEXM</defines>
<includes>../../Include;../../PrivateInclude;../FrameworkInclude;../GeneratedInclude;../Include/Tests</includes>

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<cprj schemaVersion="1.0.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
<created timestamp="2022-11-03T11:17:34" tool="csolution 1.1.0"/>
<created timestamp="2022-11-03T14:24:01" tool="csolution 1.1.0"/>
<info isLayer="false">
<description>Automatically generated project</description>
@ -18,8 +18,8 @@
<target Ddsp="DSP" Dfpu="DP_FPU" Dmve="FP_MVE" Dname="SSE-310-MPS3" Dsecure="Non-secure" Dtz="TZ" Dvendor="ARM:82">
<output intdir="tmp/test/VHT-Corstone-310/Release" name="test.Release+VHT-Corstone-310" outdir="out/test/VHT-Corstone-310/Release" rtedir="RTE" type="exe"/>
<asflags add="-masm=auto" compiler="AC6"/>
<cflags add="-std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<cflags add="-Wsign-compare -Wdouble-promotion -DNDEBUG -Wall -Wextra -Werror -std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-fno-rtti -DNDEBUG -Wall -Wextra -std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<ldflags add="--entry=Reset_Handler --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="AC6" file="RTE/Device/SSE-310-MPS3/corstone310_mps3_s.sct"/>
<defines>EMBEDDED;NORMALFVP;CORTEXM</defines>
<includes>../../Include;../../PrivateInclude;../FrameworkInclude;../GeneratedInclude;../Include/Tests</includes>

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<cprj schemaVersion="1.0.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
<created timestamp="2022-11-03T11:17:34" tool="csolution 1.1.0"/>
<created timestamp="2022-11-03T14:24:01" tool="csolution 1.1.0"/>
<info isLayer="false">
<description>Automatically generated project</description>
@ -17,8 +17,8 @@
<target Dfpu="NO_FPU" Dname="ARMCM0P" Dsecure="Non-secure" Dvendor="ARM:82">
<output intdir="tmp/test/VHT_M0P/Release" name="test.Release+VHT_M0P" outdir="out/test/VHT_M0P/Release" rtedir="RTE" type="exe"/>
<asflags add="-masm=auto" compiler="AC6"/>
<cflags add="-std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<cflags add="-Wsign-compare -Wdouble-promotion -DNDEBUG -Wall -Wextra -Werror -std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-fno-rtti -DNDEBUG -Wall -Wextra -std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<ldflags add="--entry=Reset_Handler --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="AC6" file="RTE/Device/ARMCM0P/ARMCM0plus_ac6.sct"/>
<defines>EMBEDDED;NORMALFVP;CORTEXM</defines>
<includes>../../Include;../../PrivateInclude;../FrameworkInclude;../GeneratedInclude;../Include/Tests</includes>

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<cprj schemaVersion="1.0.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
<created timestamp="2022-11-03T11:17:34" tool="csolution 1.1.0"/>
<created timestamp="2022-11-03T14:24:01" tool="csolution 1.1.0"/>
<info isLayer="false">
<description>Automatically generated project</description>
@ -17,8 +17,8 @@
<target Dfpu="NO_FPU" Dname="ARMCM23" Dsecure="Non-secure" Dtz="NO_TZ" Dvendor="ARM:82">
<output intdir="tmp/test/VHT_M23/Release" name="test.Release+VHT_M23" outdir="out/test/VHT_M23/Release" rtedir="RTE" type="exe"/>
<asflags add="-masm=auto" compiler="AC6"/>
<cflags add="-std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<cflags add="-Wsign-compare -Wdouble-promotion -DNDEBUG -Wall -Wextra -Werror -std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-fno-rtti -DNDEBUG -Wall -Wextra -std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<ldflags add="--entry=Reset_Handler --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="AC6" file="RTE/Device/ARMCM23/ARMCM23_ac6.sct"/>
<defines>EMBEDDED;NORMALFVP;CORTEXM</defines>
<includes>../../Include;../../PrivateInclude;../FrameworkInclude;../GeneratedInclude;../Include/Tests</includes>

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<cprj schemaVersion="1.0.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
<created timestamp="2022-11-03T11:17:34" tool="csolution 1.1.0"/>
<created timestamp="2022-11-03T14:24:01" tool="csolution 1.1.0"/>
<info isLayer="false">
<description>Automatically generated project</description>
@ -17,8 +17,8 @@
<target Dfpu="NO_FPU" Dname="ARMCM3" Dsecure="Non-secure" Dvendor="ARM:82">
<output intdir="tmp/test/VHT_M3/Release" name="test.Release+VHT_M3" outdir="out/test/VHT_M3/Release" rtedir="RTE" type="exe"/>
<asflags add="-masm=auto" compiler="AC6"/>
<cflags add="-std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<cflags add="-Wsign-compare -Wdouble-promotion -DNDEBUG -Wall -Wextra -Werror -std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-fno-rtti -DNDEBUG -Wall -Wextra -std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<ldflags add="--entry=Reset_Handler --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="AC6" file="RTE/Device/ARMCM3/ARMCM3_ac6.sct"/>
<defines>EMBEDDED;NORMALFVP;CORTEXM</defines>
<includes>../../Include;../../PrivateInclude;../FrameworkInclude;../GeneratedInclude;../Include/Tests</includes>

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<cprj schemaVersion="1.0.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
<created timestamp="2022-11-03T11:17:34" tool="csolution 1.1.0"/>
<created timestamp="2022-11-03T14:24:01" tool="csolution 1.1.0"/>
<info isLayer="false">
<description>Automatically generated project</description>
@ -17,8 +17,8 @@
<target Ddsp="DSP" Dfpu="SP_FPU" Dname="ARMCM33_DSP_FP" Dsecure="Non-secure" Dtz="NO_TZ" Dvendor="ARM:82">
<output intdir="tmp/test/VHT_M33/Release" name="test.Release+VHT_M33" outdir="out/test/VHT_M33/Release" rtedir="RTE" type="exe"/>
<asflags add="-masm=auto" compiler="AC6"/>
<cflags add="-std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<cflags add="-Wsign-compare -Wdouble-promotion -DNDEBUG -Wall -Wextra -Werror -std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-fno-rtti -DNDEBUG -Wall -Wextra -std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<ldflags add="--entry=Reset_Handler --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="AC6" file="RTE/Device/ARMCM33_DSP_FP/ARMCM33_ac6.sct"/>
<defines>EMBEDDED;NORMALFVP;CORTEXM</defines>
<includes>../../Include;../../PrivateInclude;../FrameworkInclude;../GeneratedInclude;../Include/Tests</includes>

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<cprj schemaVersion="1.0.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
<created timestamp="2022-11-03T11:17:34" tool="csolution 1.1.0"/>
<created timestamp="2022-11-03T14:24:01" tool="csolution 1.1.0"/>
<info isLayer="false">
<description>Automatically generated project</description>
@ -17,8 +17,8 @@
<target Dfpu="SP_FPU" Dname="ARMCM4_FP" Dsecure="Non-secure" Dvendor="ARM:82">
<output intdir="tmp/test/VHT_M4/Release" name="test.Release+VHT_M4" outdir="out/test/VHT_M4/Release" rtedir="RTE" type="exe"/>
<asflags add="-masm=auto" compiler="AC6"/>
<cflags add="-std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<cflags add="-Wsign-compare -Wdouble-promotion -DNDEBUG -Wall -Wextra -Werror -std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-fno-rtti -DNDEBUG -Wall -Wextra -std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<ldflags add="--entry=Reset_Handler --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="AC6" file="RTE/Device/ARMCM4_FP/ARMCM4_ac6.sct"/>
<defines>EMBEDDED;NORMALFVP;CORTEXM</defines>
<includes>../../Include;../../PrivateInclude;../FrameworkInclude;../GeneratedInclude;../Include/Tests</includes>

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<cprj schemaVersion="1.0.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
<created timestamp="2022-11-03T11:17:34" tool="csolution 1.1.0"/>
<created timestamp="2022-11-03T14:24:01" tool="csolution 1.1.0"/>
<info isLayer="false">
<description>Automatically generated project</description>
@ -17,8 +17,8 @@
<target Dfpu="DP_FPU" Dname="ARMCM7_DP" Dsecure="Non-secure" Dvendor="ARM:82">
<output intdir="tmp/test/VHT_M7/Release" name="test.Release+VHT_M7" outdir="out/test/VHT_M7/Release" rtedir="RTE" type="exe"/>
<asflags add="-masm=auto" compiler="AC6"/>
<cflags add="-std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<cflags add="-Wsign-compare -Wdouble-promotion -DNDEBUG -Wall -Wextra -Werror -std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-fno-rtti -DNDEBUG -Wall -Wextra -std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<ldflags add="--entry=Reset_Handler --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="AC6" file="RTE/Device/ARMCM7_DP/ARMCM7_ac6.sct"/>
<defines>EMBEDDED;NORMALFVP;CORTEXM</defines>
<includes>../../Include;../../PrivateInclude;../FrameworkInclude;../GeneratedInclude;../Include/Tests</includes>

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<cprj schemaVersion="1.0.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="CPRJ.xsd">
<created timestamp="2022-11-03T11:17:34" tool="csolution 1.1.0"/>
<created timestamp="2022-11-03T14:24:01" tool="csolution 1.1.0"/>
<info isLayer="false">
<description>Automatically generated project</description>
@ -17,8 +17,8 @@
<target Dfpu="DP_FPU" Dname="ARMCM7_DP" Dsecure="Non-secure" Dvendor="ARM:82">
<output intdir="tmp/test/VHT_M7_UNROLLED/Release" name="test.Release+VHT_M7_UNROLLED" outdir="out/test/VHT_M7_UNROLLED/Release" rtedir="RTE" type="exe"/>
<asflags add="-masm=auto" compiler="AC6"/>
<cflags add="-std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<cflags add="-Wsign-compare -Wdouble-promotion -DNDEBUG -Wall -Wextra -Werror -std=c11 -Ofast -ffast-math" compiler="AC6"/>
<cxxflags add="-fno-rtti -DNDEBUG -Wall -Wextra -std=c++11 -Ofast -ffast-math" compiler="AC6"/>
<ldflags add="--entry=Reset_Handler --info=summarysizes --info=sizes --info=totals --info=unused --info=veneers" compiler="AC6" file="RTE/Device/ARMCM7_DP/ARMCM7_ac6.sct"/>
<defines>EMBEDDED;NORMALFVP;CORTEXM;ARM_MATH_LOOPUNROLL</defines>
<includes>../../Include;../../PrivateInclude;../FrameworkInclude;../GeneratedInclude;../Include/Tests</includes>

@ -2,10 +2,20 @@ solution:
compiler: AC6
misc:
- C:
- -Wsign-compare
- -Wdouble-promotion
- -DNDEBUG
- -Wall
- -Wextra
- -Werror
- -std=c11
- -Ofast
- -ffast-math
- CPP:
- -fno-rtti
- -DNDEBUG
- -Wall
- -Wextra
- -std=c++11
- -Ofast
- -ffast-math

@ -24,7 +24,7 @@ using namespace std;
// Reference patterns are ignored in this case.
#include "TestDrive.h"
extern "C" void testmain_hook (void) __attribute__ ((weak));
extern "C" void testmain_hook(void) __attribute__ ((weak));
void testmain_hook(void)
{

Loading…
Cancel
Save