blob: a2d0d63cc17547af8dd1b182a1796dc1ea30470a (
plain)
1
2
3
4
5
6
7
8
9
|
// Verifies that functions are instrumented.
//
//@ needs-sanitizer-dataflow
//@ compile-flags: -Copt-level=0 -Zsanitizer=dataflow
#![crate_type = "lib"]
pub fn foo() {}
// CHECK: define{{.*}}foo{{.*}}.dfsan
|