brintos

brintos / llvm-project-archived public Read only

0
0
Text · 588 B · 5ef52e7 Raw
22 lines · cpp
1// RUN: %clangxx_asan -O0 -mllvm -asan-instrument-dynamic-allocas %s -o %t2// RUN: not %run %t 2>&1 | FileCheck %s3//4// XFAIL: msvc5 6#include "defines.h"7#include <assert.h>8#include <stdint.h>9 10ATTRIBUTE_NOINLINE void foo(int index, int len) {11  volatile char str[len] ATTRIBUTE_ALIGNED(128);12  assert(!(reinterpret_cast<uintptr_t>(str) & 127L));13  str[index] = '1'; // BOOM14// CHECK: ERROR: AddressSanitizer: dynamic-stack-buffer-overflow on address [[ADDR:0x[0-9a-f]+]]15// CHECK: WRITE of size 1 at [[ADDR]] thread T016}17 18int main(int argc, char **argv) {19  foo(10, 10);20  return 0;21}22