diff options
author | Zarko Todorovski <zarko@ca.ibm.com> | 2021-11-19 14:50:09 -0500 |
---|---|---|
committer | Zarko Todorovski <zarko@ca.ibm.com> | 2021-11-19 14:58:35 -0500 |
commit | d8e5a0c42bd8796cce9caa53aacab88c7cb2a3eb (patch) | |
tree | fcbd549681526fd97561a76c10db9dc00ff8c955 /clang/lib/Frontend/FrontendActions.cpp | |
parent | e0f58444e126e80a0d43eb5b88622799910195e6 (diff) | |
download | llvm-d8e5a0c42bd8796cce9caa53aacab88c7cb2a3eb.zip llvm-d8e5a0c42bd8796cce9caa53aacab88c7cb2a3eb.tar.gz llvm-d8e5a0c42bd8796cce9caa53aacab88c7cb2a3eb.tar.bz2 |
[clang][NFC] Inclusive terms: replace some uses of sanity in clang
Rewording of comments to avoid using `sanity test, sanity check`.
Reviewed By: aaron.ballman, Quuxplusone
Differential Revision: https://reviews.llvm.org/D114025
Diffstat (limited to 'clang/lib/Frontend/FrontendActions.cpp')
-rw-r--r-- | clang/lib/Frontend/FrontendActions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Frontend/FrontendActions.cpp b/clang/lib/Frontend/FrontendActions.cpp index b5544af..fb8132a 100644 --- a/clang/lib/Frontend/FrontendActions.cpp +++ b/clang/lib/Frontend/FrontendActions.cpp @@ -842,7 +842,7 @@ void PrintPreprocessedAction::ExecuteAction() { const char *next = (cur != end) ? cur + 1 : end; // Limit ourselves to only scanning 256 characters into the source - // file. This is mostly a sanity check in case the file has no + // file. This is mostly a check in case the file has no // newlines whatsoever. if (end - cur > 256) end = cur + 256; |