]> sourceware.org Git - valgrind.git/commitdiff
Add attribute noinline to memcheck/tests/wrap6.c
authorPaul Floyd <pjfloyd@wanadoo.fr>
Thu, 19 May 2022 18:58:10 +0000 (20:58 +0200)
committerPaul Floyd <pjfloyd@wanadoo.fr>
Thu, 19 May 2022 18:58:10 +0000 (20:58 +0200)
With clang 13 this testcase was failing due to inlining/optimization of fn_12.

memcheck/tests/wrap6.c

index 4b7017abb776fd4aac42595292f354931aa706ad..46eb3c7083faac779f5237c796b0a941d8187aa4 100644 (file)
@@ -588,6 +588,7 @@ UInt I_WRAP_SONAME_FNNAME_ZU(NONE,fn_11)
 
 /* --------------- 12 --------------- */  
 
+__attribute__((noinline))
 UInt fn_12 ( UInt a1, UInt a2, UInt a3, UInt a4, UInt a5, UInt a6,
              UInt a7, UInt a8, UInt a9, UInt a10, UInt a11, UInt a12 )
 {
This page took 1.706541 seconds and 5 git commands to generate.