aboutsummaryrefslogtreecommitdiff
path: root/lib/asan/lit_tests/on_error_callback.cc
blob: bb94d9fb579bd424aa1725bf71dc1e9bcf48f2d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// RUN: %clangxx_asan -O2 %s -o %t && %t 2>&1 | FileCheck %s

#include <stdio.h>
#include <stdlib.h>

extern "C"
void __asan_on_error() {
  fprintf(stderr, "__asan_on_error called");
}

int main() {
  char *x = (char*)malloc(10 * sizeof(char));
  free(x);
  return x[5];
  // CHECK: __asan_on_error called
}