blob: 5f654f557821f2dbe060e9976fbca7e5770f274c [file] [log] [blame]
/* { dg-do compile } */
extern void testfunc(int);
int foo()
{
#ifndef __SANITIZE_HWADDRESS__
testfunc(1);
#endif
return 1;
}
/* { dg-final { scan-assembler-not "testfunc" } } */