llvm-project/clang/test/CodeGen/asan-use-callbacks.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
458 B
C++
Raw Normal View History

// RUN: %clang -S -fsanitize=address -emit-llvm -o - -fsanitize=address %s \
// RUN: | FileCheck %s --check-prefixes=CHECK-NO-OUTLINE
// RUN: %clang -S -fsanitize=address -emit-llvm -o - -fsanitize=address %s \
// RUN: -fsanitize-address-outline-instrumentation \
// RUN: | FileCheck %s --check-prefixes=CHECK-OUTLINE
// CHECK-NO-OUTLINE-NOT: call{{.*}}@__asan_load4
// CHECK-OUTLINE: call{{.*}}@__asan_load4
int deref(int *p) {
return *p;
}