brintos

brintos / llvm-project-archived public Read only

0
0
Text · 370 B · feb5f10 Raw
21 lines · cpp
1// This is the ASAN test of the same name ported to HWAsan.2 3// RUN: %clangxx_hwasan -O1 %s -o %t && %run %t4 5// REQUIRES: aarch64-target-arch || riscv64-target-arch6 7#include <stdio.h>8#include <stdlib.h>9 10int *p[3];11 12int main() {13  // Variable goes in and out of scope.14  for (int i = 0; i < 3; i++) {15    int x;16    p[i] = &x;17  }18  printf("PASSED\n");19  return 0;20}21