mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
7 lines
256 B
C
7 lines
256 B
C
// Test to ensure -emit-llvm profile-sample-accurate is honored by clang.
|
|
// RUN: %clang -S -emit-llvm %s -fprofile-sample-accurate -o - | FileCheck %s
|
|
|
|
// CHECK: define{{.*}} void @foo()
|
|
// CHECK: attributes{{.*}} "profile-sample-accurate"
|
|
void foo() {
|
|
}
|