Skip to content

Commit e7e9982

Browse files
b-sumnersearlmc1
authored andcommitted
Fix API names for variable sized operations
Change-Id: Ica791ffdb807474f1797127bff9aebb37c6abf90
1 parent fb453a4 commit e7e9982

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

amd/device-libs/asanrtl/src/report.cl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,14 @@ ASAN_ERROR(store, 16,1)
8888

8989
#define ASAN_ERROR_N(type, is_write) \
9090
USED NO_INLINE NO_SANITIZE_ADDR \
91-
void __asan_ ## type ## _n(uptr addr, uptr size) { \
91+
void __asan_ ## type ## N(uptr addr, uptr size) { \
9292
uptr caller_pc = GET_CALLER_PC(); \
9393
if (__asan_region_is_poisoned(addr, size)) { \
9494
REPORT_IMPL(caller_pc, addr, is_write, size, false) \
9595
} \
9696
} \
9797
USED NO_INLINE NO_SANITIZE_ADDR \
98-
void __asan_ ## type ## _n_noabort(uptr addr, uptr size) { \
98+
void __asan_ ## type ## N_noabort(uptr addr, uptr size) { \
9999
uptr caller_pc = GET_CALLER_PC(); \
100100
if (__asan_region_is_poisoned(addr, size)) { \
101101
REPORT_IMPL(caller_pc, addr, is_write, size, true) \

0 commit comments

Comments
 (0)