Skip to content

Commit b9c738c

Browse files
committed
Fix some typos.
1 parent 73a8a94 commit b9c738c

File tree

6 files changed

+11
-13
lines changed

6 files changed

+11
-13
lines changed

docs/checkedc/Update-to-latest-LLVM-sources.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,6 @@ Then run tests. We have added tests for Checked C to the clang master branch, s
6464
into account during testing. Make sure the code passes the following tests:
6565

6666
- The same tests as the baseline branch, _plus_ the Checked C specific tests for clang in the master branch.
67-
See the delta on the [testing baselines](Test-Baselines.md) page.
6867
- The Checked C languages tests for the Checked C project.
6968

70-
After the tests are passing, update the markdown for the testing baselines in clang/docs/CheckedC/Test-Baselines.md.
71-
Then push the changes up to a personal Github fork and issue a pull request.
69+
Once the tests are passing, push the changes up to a personal Github fork and issue a pull request.

test/Driver/checkedc-notsupported.cl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
// RUN: not %clang -fcheckedc-extension %s 2>&1 | FileCheck %s
55
// CHECK: error: invalid argument '-fcheckedc-extension' not allowed with 'OpenCL'
66
//
7-
// Have clang compile this file as a C file
7+
// Have clang compile this file as a C file.
88
// RUN: %clang -c -fcheckedc-extension -x c %s
99
//
10-
// Have clang-cl to to compile this file as a C file
10+
// Have clang-cl compile this file as a C file.
1111
// RUN: %clang_cl -c -Xclang -fcheckedc-extension /TC %s
1212

1313
extern void f() {}

test/Driver/checkedc-notsupported.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
// RUN: not %clang -fcheckedc-extension %s 2>&1 | FileCheck %s
55
// CHECK: error: invalid argument '-fcheckedc-extension' not allowed with 'C++'
66
//
7-
// Have clang compile this file as a C file
7+
// Have clang compile this file as a C file.
88
// RUN: %clang -c -fcheckedc-extension -x c %s
99
//
10-
// Have clang-cl to to compile this file as a C file
10+
// Have clang-cl compile this file as a C file.
1111
// RUN: %clang_cl -c -Xclang -fcheckedc-extension /TC %s
1212

1313
extern void f() {}

test/Driver/checkedc-notsupported.cu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
// RUN: not %clang -fcheckedc-extension %s 2>&1 | FileCheck %s
55
// CHECK: error: invalid argument '-fcheckedc-extension' not allowed with 'CUDA'
66
//
7-
// Have clang compile this file as a C file
7+
// Have clang compile this file as a C file.
88
// RUN: %clang -c -fcheckedc-extension -x c %s
99
//
10-
// Have clang-cl to to compile this file as a C file
10+
// Have clang-cl compile this file as a C file.
1111
// RUN: %clang_cl -c -Xclang -fcheckedc-extension /TC %s
1212

1313
extern void f() {}

test/Driver/checkedc-notsupported.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
// RUN: not %clang -fcheckedc-extension %s 2>&1 | FileCheck %s
55
// CHECK: error: invalid argument '-fcheckedc-extension' not allowed with 'Objective C'
66
//
7-
// Have clang compile this file as a C file
7+
// Have clang compile this file as a C file.
88
// RUN: %clang -c -fcheckedc-extension -x c %s
99
//
10-
// Have clang-cl to to compile this file as a C file
10+
// Have clang-cl compile this file as a C file.
1111
// RUN: %clang_cl -c -Xclang -fcheckedc-extension /TC %s
1212

1313
extern void f() {}

test/Driver/checkedc-supported.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
// RUN: %clang -c -fcheckedc-extension %s
66
// RUN: %clang_cl -c -Xclang -fcheckedc-extension %s
77
//
8-
// Have clang compile this file as C++ file
8+
// Have clang compile this file as C++ file.
99
// RUN: not %clang -c -fcheckedc-extension -x c++ %s 2>&1 \
1010
// RUN: | FileCheck %s -check-prefix=check-cpp
1111
// check-cpp: error: invalid argument '-fcheckedc-extension' not allowed with 'C++'
1212
//
13-
// Have clang-cl to to compile this file as a C++ file
13+
// Have clang-cl compile this file as a C++ file.
1414
// RUN: not %clang_cl -c -Xclang -fcheckedc-extension /TP %s 2>&1 \
1515
// RUN: | FileCheck %s -check-prefix=clcheck-cpp
1616
// clcheck-cpp: error: invalid argument '-fcheckedc-extension' not allowed with 'C++'

0 commit comments

Comments
 (0)