blob: cf628d55cf5c2ba0100c1f8195f098e41e9b45be [file] [log] [blame]
Dehao Chen5e97f232017-08-24 21:37:33 +00001// 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}