llvm/compiler-rt/test/hwasan/TestCases/exported-tagged-global.c

// RUN: %clang_hwasan %s -o %t
// RUN: %run %t
// RUN: %clang_hwasan -O1 %s -o %t
// RUN: %run %t
// RUN: %clang_hwasan -O1 -mllvm --aarch64-enable-global-isel-at-O=1 %s -o %t
// RUN: %run %t
// REQUIRES: aarch64-target-arch || riscv64-target-arch

// This test relies on aarch64 option thus it fails for risc-v
// XFAIL: riscv64-target-arch

static int global;

__attribute__((optnone)) int *address_of_global() { return &global; }

int main(int argc, char **argv) {
  int *global_address = address_of_global();
  *global_address = 13;
  return 0;
}