[libc] Switch to using the generic `<gpuintrin.h>` implementations (#121810)
[llvm-project.git] / compiler-rt / test / dfsan / flags.c
blob7115f002e9ec81ef408545ceba3eb4b491382fe7
1 // RUN: %clang_dfsan %s -fsanitize-ignorelist=%S/Inputs/flags_abilist.txt -mllvm -dfsan-debug-nonzero-labels -o %t && env DFSAN_OPTIONS=warn_unimplemented=1 %run %t 2>&1 | FileCheck %s
2 // RUN: %clang_dfsan %s -fsanitize-ignorelist=%S/Inputs/flags_abilist.txt -mllvm -dfsan-debug-nonzero-labels -o %t && env DFSAN_OPTIONS=warn_unimplemented=0 %run %t 2>&1 | count 0
3 // RUN: %clang_dfsan %s -fsanitize-ignorelist=%S/Inputs/flags_abilist.txt -mllvm -dfsan-debug-nonzero-labels -o %t && env DFSAN_OPTIONS=warn_nonzero_labels=1 %run %t 2>&1 | FileCheck --check-prefix=CHECK-NONZERO %s
5 // Tests that flags work correctly.
7 #include <sanitizer/dfsan_interface.h>
9 int f(int i) {
10 return i;
13 int main(void) {
14 int i = 1;
15 dfsan_label i_label = 2;
16 dfsan_set_label(i_label, &i, sizeof(i));
18 // CHECK: WARNING: DataFlowSanitizer: call to uninstrumented function f
19 // CHECK-NOT: WARNING: DataFlowSanitizer: saw nonzero label
20 // CHECK-NONZERO: WARNING: DataFlowSanitizer: saw nonzero label
21 f(i);
23 return 0;