Clang Project

clang_source_code/test/CodeGen/profile-sample-accurate.c
1// Test to ensure -emit-llvm profile-sample-accurate is honored by clang.
2// RUN: %clang -S -emit-llvm %s -fprofile-sample-accurate -o - | FileCheck %s
3
4// CHECK: define{{.*}} void @foo()
5// CHECK: attributes{{.*}} "profile-sample-accurate"
6void foo() {
7}
8