1f4a2713aSLionel Sambuc // RUN: %clang -target i386-unknown-unknown -fsanitize=address %s -S -emit-llvm -o - | FileCheck %s
2*0a6a1f1dSLionel Sambuc // RUN: %clang -O1 -target i386-unknown-unknown -fsanitize=address %s -S -emit-llvm -o - | FileCheck %s
3*0a6a1f1dSLionel Sambuc // RUN: %clang -O2 -target i386-unknown-unknown -fsanitize=address %s -S -emit-llvm -o - | FileCheck %s
4*0a6a1f1dSLionel Sambuc // RUN: %clang -O3 -target i386-unknown-unknown -fsanitize=address %s -S -emit-llvm -o - | FileCheck %s
5*0a6a1f1dSLionel Sambuc // Verify that -fsanitize=address invokes asan instrumentation.
6f4a2713aSLionel Sambuc
foo(int * a)7f4a2713aSLionel Sambuc int foo(int *a) { return *a; }
8f4a2713aSLionel Sambuc // CHECK: __asan_init
9