summaryrefslogtreecommitdiffstats
path: root/test/Driver/asan.c
blob: f199e904e758dfa38e2be59d791d23c6a9a3bfb2 (plain)
1
2
3
4
5
6
7
8
// RUN: %clang     -target i386-unknown-unknown -fsanitize=address %s -S -emit-llvm -o - | FileCheck %s
// RUN: %clang -O1 -target i386-unknown-unknown -fsanitize=address %s -S -emit-llvm -o - | FileCheck %s
// RUN: %clang -O2 -target i386-unknown-unknown -fsanitize=address %s -S -emit-llvm -o - | FileCheck %s
// RUN: %clang -O3 -target i386-unknown-unknown -fsanitize=address %s -S -emit-llvm -o - | FileCheck %s
// Verify that -fsanitize=address invokes asan instrumentation.

int foo(int *a) { return *a; }
// CHECK: __asan_init