Skip to content

Commit eb042b7

Browse files
author
klensy
committed
add missing FileCheck calls
1 parent 0beab30 commit eb042b7

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

clang/test/AST/ast-crash-doc-function-template.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// RUN: rm -rf %t
22
// RUN: split-file %s %t
33

4-
// RUN: %clang_cc1 -x c++ -Wdocumentation -ast-dump-all %t/t.cpp
4+
// RUN: %clang_cc1 -x c++ -Wdocumentation -ast-dump-all %t/t.cpp | FileCheck %s
55

66
//--- t.h
77
/// MyClass in the header file

clang/test/C/C11/n1311.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// RUN: %clang_cc1 -emit-llvm -o - %s
1+
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
22

33
/* WG14 N1311: Yes
44
* Initializing static or external variables

clang/test/OpenMP/nvptx_lambda_pointer_capturing.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ int main()
149149
// CHECK: [[L0:%.+]] = load ptr, ptr [[BODY]]
150150
// CHECK: store ptr [[L0]], ptr [[TMP]]
151151
// CHECK: [[L5:%.+]] = load ptr, ptr [[TMP]]
152-
// CHECK-NOT [[L6:%.+]] = load ptr, ptr [[TMP]]
153-
// CHECK-NOT [[L7:%.+]] = load ptr, ptr [[TMP]]
152+
// CHECK-NOT: [[L6:%.+]] = load ptr, ptr [[TMP]]
153+
// CHECK-NOT: [[L7:%.+]] = load ptr, ptr [[TMP]]
154154
// CHECK: store ptr [[REF_TMP]], ptr [[BODY_REF]]
155155
// CHECK:[[L47:%.+]] = load ptr, ptr [[BODY_REF]]
156156
// CHECK: store ptr [[L47]], ptr [[TMP8]]

clang/test/OpenMP/parallel_for_simd_codegen.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,7 @@ for (int i = 0; i < 10; ++i);
804804
// OMP45-DAG: ![[VM]] = !{!"llvm.loop.vectorize.enable", i1 true}
805805
// OMP45-NOT: !{!"llvm.loop.vectorize.enable", i1 false}
806806
// OMP50-DAG: ![[VECT]] = distinct !{![[VECT]], ![[PA:.+]], ![[VM:.+]]}
807-
// OMP50-DAG ![[PA]] = !{!"llvm.loop.parallel_accesses", !{{.+}}}
807+
// OMP50-DAG: ![[PA]] = !{!"llvm.loop.parallel_accesses", !{{.+}}}
808808
// OMP50-DAG: ![[VM]] = !{!"llvm.loop.vectorize.enable", i1 true}
809809
// OMP50-DAG: ![[NOVECT]] = distinct !{![[NOVECT]], ![[NOVM:.+]]}
810810
// OMP50-DAG: ![[NOVM]] = !{!"llvm.loop.vectorize.enable", i1 false}

clang/test/OpenMP/reduction_implicit_map.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ int foo(int n) {
3434
;
3535
return 0;
3636
}
37-
// CHECK-NOT @.offload_maptypes
37+
// CHECK-NOT: @.offload_maptypes
3838
#elif defined(DIAG)
3939
class S2 {
4040
mutable int a;

0 commit comments

Comments
 (0)