llvm-project/clang/test/CodeGen/coverage-profile-raw-version.c

10 lines
484 B
C

// RUN: %clang_cc1 -debug-info-kind=standalone -fprofile-instrument=clang -fcoverage-mapping -emit-llvm -o - %s | FileCheck %s
// RUN: %clang_cc1 -debug-info-kind=standalone -mllvm -debug-info-correlate -fprofile-instrument=clang -fcoverage-mapping -emit-llvm -o - %s | FileCheck %s --check-prefix=DEBUG_INFO
// CHECK: @__llvm_profile_raw_version = {{.*}}constant i64 8
// DEBUG_INFO: @__llvm_profile_raw_version = {{.*}}constant i64 576460752303423496
int main() {
return 0;
}