diff --git a/gcc/asan.cc b/gcc/asan.cc index cfe83106460528a8b326eb405e3622fdc4ec9f00..7f91cc616fcacf753ce5735163d9259a1b3de094 100644 --- a/gcc/asan.cc +++ b/gcc/asan.cc @@ -2755,6 +2755,10 @@ instrument_derefs (gimple_stmt_iterator *iter, tree t, if (VAR_P (inner) && DECL_HARD_REGISTER (inner)) return; + /* Accesses to non-generic address-spaces should not be instrumented. */ + if (!ADDR_SPACE_GENERIC_P (TYPE_ADDR_SPACE (TREE_TYPE (inner)))) + return; + poly_int64 decl_size; if ((VAR_P (inner) || (TREE_CODE (inner) == RESULT_DECL diff --git a/gcc/testsuite/gcc.target/i386/pr111736.c b/gcc/testsuite/gcc.target/i386/pr111736.c new file mode 100644 index 0000000000000000000000000000000000000000..231fdd07e803048953a85825f97888a1876d3fe4 --- /dev/null +++ b/gcc/testsuite/gcc.target/i386/pr111736.c @@ -0,0 +1,23 @@ +/* { dg-do compile } */ +/* { dg-options "-O2 -fsanitize=address" } */ + +int __seg_gs m; + +int foo (void) +{ + return m; +} + +extern int __seg_gs n; + +int bar (void) +{ + return n; +} + +int baz (int __seg_gs *o) +{ + return *o; +} + +/* { dg-final { scan-assembler-not "asan_report_load" } } */