blob: e4e6d5ca2b850d69d86a2880857a1f5bdc06674a (
plain)
1
2
3
4
5
6
7
8
|
// min-llvm-version 8.0
// ignore-tidy-linelength
// compile-flags: -Z instrument-mcount
#![crate_type = "lib"]
// CHECK: attributes #{{.*}} "frame-pointer"="all" "instrument-function-entry-inlined"="{{.*}}mcount{{.*}}"
pub fn foo() {}
|