diff options
author | Xinliang David Li <davidxl@google.com> | 2016-02-05 23:36:08 +0000 |
---|---|---|
committer | Xinliang David Li <davidxl@google.com> | 2016-02-05 23:36:08 +0000 |
commit | f920e4b1232b6b0e94dc34ef65c2f0f85100b04f (patch) | |
tree | 7b72f199dcfbb6e78cd9f394d8db90185659493a | |
parent | 76f6e70bc761817710375a38dfb913858ac50629 (diff) | |
download | bcm5719-llvm-f920e4b1232b6b0e94dc34ef65c2f0f85100b04f.tar.gz bcm5719-llvm-f920e4b1232b6b0e94dc34ef65c2f0f85100b04f.zip |
[PGO] Test case update
Temporarily relax check in test to avoid
breakage for format change in LLVM side. Once that is
done, the test case will be retightened.
llvm-svn: 259955
-rw-r--r-- | clang/test/CoverageMapping/ir.c | 2 | ||||
-rw-r--r-- | clang/test/CoverageMapping/unused_names.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/CoverageMapping/ir.c b/clang/test/CoverageMapping/ir.c index fd1306273fe..e3ec4bd2422 100644 --- a/clang/test/CoverageMapping/ir.c +++ b/clang/test/CoverageMapping/ir.c @@ -9,4 +9,4 @@ int main(void) { return 0; } -// CHECK: @__llvm_coverage_mapping = internal constant { { i32, i32, i32, i32 }, [2 x <{ i8*, i32, i32, i64 }>], [{{[0-9]+}} x i8] } { { i32, i32, i32, i32 } { i32 2, i32 {{[0-9]+}}, i32 {{[0-9]+}}, i32 0 }, [2 x <{ i8*, i32, i32, i64 }>] [<{ i8*, i32, i32, i64 }> <{ i8* getelementptr inbounds ([3 x i8], [3 x i8]* @__profn_foo, i32 0, i32 0), i32 3, i32 9, i64 {{[0-9]+}} }>, <{ i8*, i32, i32, i64 }> <{ i8* getelementptr inbounds ([4 x i8], [4 x i8]* @__profn_main, i32 0, i32 0), i32 4, i32 9, i64 {{[0-9]+}} }>] +// CHECK: @__llvm_coverage_mapping = internal constant { { i32, i32, i32, i32 }, [2 x <{{.*}}>], [{{[0-9]+}} x i8] } { { i32, i32, i32, i32 } { i32 2, i32 {{[0-9]+}}, i32 {{[0-9]+}}, i32 {{[0-9]+}} }, [2 x <{{.*}}>] [<{{.*}}> <{{.*}}>, <{{.*}}> <{{.*}}>] diff --git a/clang/test/CoverageMapping/unused_names.c b/clang/test/CoverageMapping/unused_names.c index 23ac57fb62c..a38906f6754 100644 --- a/clang/test/CoverageMapping/unused_names.c +++ b/clang/test/CoverageMapping/unused_names.c @@ -4,9 +4,9 @@ // Since foo is never emitted, there should not be a profile name for it. -// CHECK-DAG: @__profn_bar = {{.*}} [3 x i8] c"bar", section "{{.*}}__llvm_prf_names" -// CHECK-DAG: @__profn_baz = {{.*}} [3 x i8] c"baz", section "{{.*}}__llvm_prf_names" -// CHECK-DAG: @__profn_unused_names.c_qux = {{.*}} [18 x i8] c"unused_names.c:qux", section "{{.*}}__llvm_prf_names" +// CHECK-DAG: @__profn_bar = {{.*}} [3 x i8] c"bar" +// CHECK-DAG: @__profn_baz = {{.*}} [3 x i8] c"baz" +// CHECK-DAG: @__profn_unused_names.c_qux = {{.*}} [18 x i8] c"unused_names.c:qux" // SYSHEADER-NOT: @__profn_foo = |