[clang] 1f33bfc - Fix test case in 32db121b29f78e4c41116b2a8f1c730f9522b202.

Zequan Wu via cfe-commits cfe-commits at lists.llvm.org
Fri Sep 15 11:43:09 PDT 2023


Author: Zequan Wu
Date: 2023-09-15T14:42:55-04:00
New Revision: 1f33bfc23fb9e94b4db75b1b18fd00a438446f51

URL: https://github.com/llvm/llvm-project/commit/1f33bfc23fb9e94b4db75b1b18fd00a438446f51
DIFF: https://github.com/llvm/llvm-project/commit/1f33bfc23fb9e94b4db75b1b18fd00a438446f51.diff

LOG: Fix test case in 32db121b29f78e4c41116b2a8f1c730f9522b202.

Added: 
    

Modified: 
    clang/test/CodeGen/coverage-profile-raw-version.c

Removed: 
    


################################################################################
diff  --git a/clang/test/CodeGen/coverage-profile-raw-version.c b/clang/test/CodeGen/coverage-profile-raw-version.c
index 48b05722967ca41..749dce50298f025 100644
--- a/clang/test/CodeGen/coverage-profile-raw-version.c
+++ b/clang/test/CodeGen/coverage-profile-raw-version.c
@@ -1,8 +1,8 @@
 // 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 = hidden constant i64 8, comdat
-// DEBUG_INFO: @__llvm_profile_raw_version = hidden constant i64 576460752303423496, comdat
+// CHECK: @__llvm_profile_raw_version = {{.*}}constant i64 8
+// DEBUG_INFO: @__llvm_profile_raw_version = {{.*}}constant i64 576460752303423496
 
 int main() {
     return 0;


        


More information about the cfe-commits mailing list