summaryrefslogtreecommitdiff
path: root/runtimes
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2022-02-10 20:56:36 -0500
committerNico Weber <thakis@chromium.org>2022-02-10 20:57:13 -0500
commit90ca7b3bca1f3cd23851fda939d73d2733a105ac (patch)
tree0db9d61fe449ed0297ec53d4e490e8aacc0ec0c0 /runtimes
parentef764ee207468c4e9c7221db25cdbc55c38315a9 (diff)
downloadllvm-90ca7b3bca1f3cd23851fda939d73d2733a105ac.tar.gz
[runtimes] rewrap a comment to 80 columns
Diffstat (limited to 'runtimes')
-rw-r--r--runtimes/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtimes/CMakeLists.txt b/runtimes/CMakeLists.txt
index 1400233b73f6..8613a91fc90a 100644
--- a/runtimes/CMakeLists.txt
+++ b/runtimes/CMakeLists.txt
@@ -95,8 +95,8 @@ include(CheckCXXCompilerFlag)
check_c_compiler_flag("" LLVM_RUNTIMES_LINKING_WORKS)
if (NOT LLVM_RUNTIMES_LINKING_WORKS)
- # The compiler driver may be implicitly trying to link against libunwind, which
- # might not work if libunwind doesn't exist yet. Try to check if
+ # The compiler driver may be implicitly trying to link against libunwind,
+ # which might not work if libunwind doesn't exist yet. Try to check if
# --unwindlib=none is supported, and use that if possible.
# Don't add this if not necessary to fix linking, as it can break using
# e.g. ASAN/TSAN.