mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-16 18:26:33 +00:00

Make it easier to support a new architecture. Reviewed By: #sanitizers, vitalybuka Differential Revision: https://reviews.llvm.org/D140744
13 lines
314 B
C
13 lines
314 B
C
// RUN: %clang_dfsan -gmlt -mllvm -dfsan-track-origins=1 %s -o %t && \
|
|
// RUN: %run %t >%t.out 2>&1
|
|
// RUN: FileCheck %s < %t.out
|
|
|
|
#include <sanitizer/dfsan_interface.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
uint64_t a = 10;
|
|
dfsan_print_origin_trace(&a, NULL);
|
|
}
|
|
|
|
// CHECK: DFSan: no tainted value at {{.*}}
|