9c: drop PLAN9PORT_ASAN

It is no longer special.
This commit is contained in:
Russ Cox 2020-12-30 08:38:55 -05:00
parent 74577741c8
commit 4692dd4786

9
bin/9c
View file

@ -26,10 +26,6 @@ usegcc()
# that option only works with gcc3+ it seems # that option only works with gcc3+ it seems
cflags="$cflags -ggdb" cflags="$cflags -ggdb"
cflags="$cflags $CC9FLAGS" cflags="$cflags $CC9FLAGS"
case "$cflags" in
*sanitize=address*)
cflags="$cflags -DPLAN9PORT_ASAN"
esac
} }
quiet() quiet()
@ -87,11 +83,6 @@ useclang()
" "
cflags="$cflags -g" cflags="$cflags -g"
cflags="$cflags $CC9FLAGS" cflags="$cflags $CC9FLAGS"
case "$cflags" in
*sanitize=address*)
cflags="$cflags -DPLAN9PORT_ASAN"
esac
} }
usexlc() usexlc()