2021-03-06 10:32:57 +08:00
|
|
|
// RUN: %clang_dfsan -gmlt -mllvm -dfsan-fast-16-labels=true %s -o %t && \
|
2021-03-04 10:35:13 +08:00
|
|
|
// RUN: %run %t >%t.out 2>&1
|
|
|
|
// RUN: FileCheck %s --check-prefix=CHECK < %t.out
|
2021-03-12 04:02:58 +08:00
|
|
|
//
|
|
|
|
// REQUIRES: x86_64-target-arch
|
2021-03-04 10:35:13 +08:00
|
|
|
|
|
|
|
#include <sanitizer/dfsan_interface.h>
|
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
uint64_t a = 10;
|
|
|
|
dfsan_set_label(8, &a, sizeof(a));
|
|
|
|
dfsan_print_origin_trace(&a, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK: DFSan: origin tracking is not enabled. Did you specify the -dfsan-track-origins=1 option?
|