Skip to content

Commit 72fd103

Browse files
committed
Doc: Links should use https
1 parent 0062441 commit 72fd103

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+195
-195
lines changed

clang/docs/LibASTImporter.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Now we create the Importer and do the import:
119119
llvm::Expected<Decl *> ImportedOrErr = Importer.Import(From);
120120
121121
The ``Import`` call returns with ``llvm::Expected``, so, we must check for any error.
122-
Please refer to the `error handling <http://llvm.org/docs/ProgrammersManual.html#recoverable-errors>`_ documentation for details.
122+
Please refer to the `error handling <https://llvm.org/docs/ProgrammersManual.html#recoverable-errors>`_ documentation for details.
123123

124124
.. code-block:: cpp
125125

clang/docs/analyzer/checkers.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2199,9 +2199,9 @@ lck_rw_try_lock_exclusive, lck_rw_try_lock_shared, pthread_mutex_unlock, pthread
21992199
alpha.unix.SimpleStream (C)
22002200
"""""""""""""""""""""""""""
22012201
Check for misuses of stream APIs. Check for misuses of stream APIs: ``fopen, fclose``
2202-
(demo checker, the subject of the demo (`Slides <http://llvm.org/devmtg/2012-11/Zaks-Rose-Checker24Hours.pdf>`_ ,
2202+
(demo checker, the subject of the demo (`Slides <https://llvm.org/devmtg/2012-11/Zaks-Rose-Checker24Hours.pdf>`_ ,
22032203
`Video <https://youtu.be/kdxlsP5QVPw>`_) by Anna Zaks and Jordan Rose presented at the
2204-
`2012 LLVM Developers' Meeting <http://llvm.org/devmtg/2012-11/>`_).
2204+
`2012 LLVM Developers' Meeting <https://llvm.org/devmtg/2012-11/>`_).
22052205
22062206
.. code-block:: c
22072207

libcxx/docs/TestingLibcxx.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ test libc++.
1919

2020
Please see the `Lit Command Guide`_ for more information about LIT.
2121

22-
.. _LIT Command Guide: http://llvm.org/docs/CommandGuide/lit.html
22+
.. _LIT Command Guide: https://llvm.org/docs/CommandGuide/lit.html
2323

2424
Setting up the Environment
2525
--------------------------

libcxx/docs/UsingLibcxx.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ thread safety annotations.
180180
Since libc++ 4.0 this extension has been disabled by default. This macro
181181
may be defined to re-enable it in order to support existing code that depends
182182
on the extension. New use of this extension should be discouraged.
183-
See `PR 27374 <http://llvm.org/PR27374>`_ for more information.
183+
See `PR 27374 <https://llvm.org/PR27374>`_ for more information.
184184

185185
Note: The "reduced-arity-initialization" extension is still offered but only
186186
for explicit conversions. Example:

libcxx/docs/index.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,8 @@ Build Bots and Test Coverage
161161
Getting Involved
162162
================
163163

164-
First please review our `Developer's Policy <http://llvm.org/docs/DeveloperPolicy.html>`__
165-
and `Getting started with LLVM <http://llvm.org/docs/GettingStarted.html>`__.
164+
First please review our `Developer's Policy <https://llvm.org/docs/DeveloperPolicy.html>`__
165+
and `Getting started with LLVM <https://llvm.org/docs/GettingStarted.html>`__.
166166

167167
**Bug Reports**
168168

@@ -173,7 +173,7 @@ can post a message to the `libcxx-dev mailing list`_ or on IRC.
173173
**Patches**
174174

175175
If you want to contribute a patch to libc++, the best place for that is
176-
`Phabricator <http://llvm.org/docs/Phabricator.html>`_. Please add `libcxx-commits` as a subscriber.
176+
`Phabricator <https://llvm.org/docs/Phabricator.html>`_. Please add `libcxx-commits` as a subscriber.
177177
Also make sure you are subscribed to the `libcxx-commits mailing list <http://lists.llvm.org/mailman/listinfo/libcxx-commits>`_.
178178

179179
**Discussion and Questions**
@@ -185,7 +185,7 @@ Send discussions and questions to the
185185

186186
Quick Links
187187
===========
188-
* `LLVM Homepage <http://llvm.org/>`_
188+
* `LLVM Homepage <https://llvm.org/>`_
189189
* `libc++abi Homepage <http://libcxxabi.llvm.org/>`_
190190
* `LLVM Bugzilla <https://bugs.llvm.org/>`_
191191
* `libcxx-commits Mailing List`_

libunwind/docs/BuildingLibunwind.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ build would look like this:
5757
5858
$ cd where-you-want-libunwind-to-live
5959
$ # Check out llvm, and libunwind
60-
$ ``svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm``
61-
$ ``svn co http://llvm.org/svn/llvm-project/libunwind/trunk libunwind``
60+
$ ``svn co https://llvm.org/svn/llvm-project/llvm/trunk llvm``
61+
$ ``svn co https://llvm.org/svn/llvm-project/libunwind/trunk libunwind``
6262
$ cd where-you-want-to-build
6363
$ mkdir build && cd build
6464
$ export CC=clang CXX=clang++

libunwind/docs/index.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ Notes and Known Issues
7171
Getting Involved
7272
================
7373

74-
First please review our `Developer's Policy <http://llvm.org/docs/DeveloperPolicy.html>`__
75-
and `Getting started with LLVM <http://llvm.org/docs/GettingStarted.html>`__.
74+
First please review our `Developer's Policy <https://llvm.org/docs/DeveloperPolicy.html>`__
75+
and `Getting started with LLVM <https://llvm.org/docs/GettingStarted.html>`__.
7676

7777
**Bug Reports**
7878

@@ -84,7 +84,7 @@ Please include "libunwind" in your subject.
8484
**Patches**
8585

8686
If you want to contribute a patch to libunwind, the best place for that is
87-
`Phabricator <http://llvm.org/docs/Phabricator.html>`_. Please include [libunwind] in the subject and
87+
`Phabricator <https://llvm.org/docs/Phabricator.html>`_. Please include [libunwind] in the subject and
8888
add `cfe-commits` as a subscriber. Also make sure you are subscribed to the
8989
`cfe-commits mailing list <http://lists.llvm.org/mailman/listinfo/cfe-commits>`_.
9090

@@ -97,7 +97,7 @@ Please include [libunwind] in the subject.
9797

9898
Quick Links
9999
===========
100-
* `LLVM Homepage <http://llvm.org/>`_
100+
* `LLVM Homepage <https://llvm.org/>`_
101101
* `LLVM Bugzilla <https://bugs.llvm.org/>`_
102102
* `cfe-commits Mailing List`_
103103
* `cfe-dev Mailing List`_

lld/docs/AtomLLD.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ Indices and tables
5959
* :ref:`genindex`
6060
* :ref:`search`
6161

62-
__ http://llvm.org/docs/DeveloperPolicy.html#license
62+
__ https://llvm.org/docs/DeveloperPolicy.html#license

lld/docs/NewLLD.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ Finally, the linker replaces bitcode symbols with ELF/COFF symbols,
248248
so that they are linked as if they were in the native format from the beginning.
249249

250250
The details are described in this document.
251-
http://llvm.org/docs/LinkTimeOptimization.html
251+
https://llvm.org/docs/LinkTimeOptimization.html
252252

253253
Glossary
254254
--------

lld/docs/design.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ Testing
326326

327327
The lld project contains a test suite which is being built up as new code is
328328
added to lld. All new lld functionality should have a tests added to the test
329-
suite. The test suite is `lit <http://llvm.org/cmds/lit.html/>`_ driven. Each
329+
suite. The test suite is `lit <https://llvm.org/cmds/lit.html/>`_ driven. Each
330330
test is a text file with comments telling lit how to run the test and check the
331331
result To facilitate testing, the lld project builds a tool called lld-core.
332332
This tool reads a YAML file (default from stdin), parses it into one or more

0 commit comments

Comments
 (0)