blob: 9dd6afd24d7eab6bec7ca0b8ff4c7c36f475c82e [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
Douglas Yungaa25e5b2017-08-30 22:30:08 +00004// CHECK: define {{.*}} void @foo()
Dehao Chen5e97f232017-08-24 21:37:33 +00005// CHECK: attributes {{.*}} "profile-sample-accurate"
6void foo() {
7}