blob: 556cad753c3c8c4710052366aefe5d2f3f4fdde4 [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
Hans Wennborg8f1559c2017-08-30 23:26:38 +00004// CHECK: define{{.*}} void @foo()
5// CHECK: attributes{{.*}} "profile-sample-accurate"
Dehao Chen5e97f232017-08-24 21:37:33 +00006void foo() {
7}