Sign in
gnu
/
gcc.git
/
3e4ced9de1f1c6444eae44c1fed493742c345bc6
/
.
/
gcc
/
testsuite
/
c-c++-common
/
hwasan
/
macro-definition.c
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" } } */