memcheck: on arm64, use expensive instrumentation for Cmp{EQ,NE}64 by default.
[valgrind.git] / memcheck / tests / wrap7.c
blobcbb4e50f7d26e063d26b2232d4c45590b957ac1d
2 #include <stdio.h>
3 #include "valgrind.h"
5 /* The simplest possible wrapping test: just call a wrapped function
6 and check we run the wrapper instead. Except: the wrapped
7 function is in a different shared object. This causes some
8 additional complications on ppc64-linux, hence another test. */
10 extern void actual ( void );
12 /* The wrapper. The function being wrapped is in a .so with soname
13 "wrap7so.so". */
14 void I_WRAP_SONAME_FNNAME_ZU(wrap7soZdso,actual) ( void )
16 OrigFn fn;
17 VALGRIND_GET_ORIG_FN(fn);
18 printf("wrapper-pre\n");
19 CALL_FN_v_v(fn);
20 printf("wrapper-post\n");
23 /* --------------- */
25 int main ( void )
27 printf("starting\n");
28 actual();
29 return 0;