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

+1-1
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

+2-2
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

+1-1
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

+1-1
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

+4-4
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

+2-2
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

+4-4
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

+1-1
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

+1-1
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

+1-1
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

lld/docs/development.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Development
66
Note: this document discuss Mach-O port of LLD. For ELF and COFF,
77
see :doc:`index`.
88

9-
lld is developed as part of the `LLVM <http://llvm.org>`_ project.
9+
lld is developed as part of the `LLVM <https://llvm.org>`_ project.
1010

1111
Creating a Reader
1212
-----------------

lld/docs/getting_started.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Getting Started: Building and Running lld
66
This page gives you the shortest path to checking out and building lld. If you
77
run into problems, please file bugs in the `LLVM Bugzilla`__
88

9-
__ http://llvm.org/bugs/
9+
__ https://llvm.org/bugs/
1010

1111
Building lld
1212
------------
@@ -84,4 +84,4 @@ More Information
8484

8585
For more information on using CMake see the `LLVM CMake guide`_.
8686

87-
.. _LLVM CMake guide: http://llvm.org/docs/CMake.html
87+
.. _LLVM CMake guide: https://llvm.org/docs/CMake.html

lld/docs/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Build
9898
If you have already checked out LLVM using SVN, you can check out LLD
9999
under ``tools`` directory just like you probably did for clang. For the
100100
details, see `Getting Started with the LLVM System
101-
<http://llvm.org/docs/GettingStarted.html>`_.
101+
<https://llvm.org/docs/GettingStarted.html>`_.
102102

103103
If you haven't checked out LLVM, the easiest way to build LLD is to
104104
check out the entire LLVM projects/sub-projects from a git mirror and

llvm/docs/AMDGPUUsage.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -9977,4 +9977,4 @@ Additional Documentation
99779977
.. [SEMVER] `Semantic Versioning <https://semver.org/>`__
99789978
.. [OpenCL] `The OpenCL Specification Version 2.0 <http://www.khronos.org/registry/cl/specs/opencl-2.0.pdf>`__
99799979
.. [HRF] `Heterogeneous-race-free Memory Models <http://benedictgaster.org/wp-content/uploads/2014/01/asplos269-FINAL.pdf>`__
9980-
.. [CLANG-ATTR] `Attributes in Clang <http://clang.llvm.org/docs/AttributeReference.html>`__
9980+
.. [CLANG-ATTR] `Attributes in Clang <https://clang.llvm.org/docs/AttributeReference.html>`__

llvm/docs/AliasAnalysis.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ indicating that two pointers always point to the same object, might point to the
1919
same object, or are known to never point to the same object.
2020

2121
The LLVM `AliasAnalysis
22-
<http://llvm.org/doxygen/classllvm_1_1AliasAnalysis.html>`__ class is the
22+
<https://llvm.org/doxygen/classllvm_1_1AliasAnalysis.html>`__ class is the
2323
primary interface used by clients and implementations of alias analyses in the
2424
LLVM system. This class is the common interface between clients of alias
2525
analysis information and the implementations providing it, and is designed to
@@ -36,7 +36,7 @@ points about what exactly results mean.
3636
``AliasAnalysis`` Class Overview
3737
================================
3838

39-
The `AliasAnalysis <http://llvm.org/doxygen/classllvm_1_1AliasAnalysis.html>`__
39+
The `AliasAnalysis <https://llvm.org/doxygen/classllvm_1_1AliasAnalysis.html>`__
4040
class defines the interface that the various alias analysis implementations
4141
should support. This class exports two important enums: ``AliasResult`` and
4242
``ModRefResult`` which represent the result of an alias query or a mod/ref
@@ -264,7 +264,7 @@ Interfaces which may be specified
264264
---------------------------------
265265

266266
All of the `AliasAnalysis
267-
<http://llvm.org/doxygen/classllvm_1_1AliasAnalysis.html>`__ virtual methods
267+
<https://llvm.org/doxygen/classllvm_1_1AliasAnalysis.html>`__ virtual methods
268268
default to providing :ref:`chaining <aliasanalysis-chaining>` to another alias
269269
analysis implementation, which ends up returning conservatively correct
270270
information (returning "May" Alias and "Mod/Ref" for alias and mod/ref queries
@@ -435,7 +435,7 @@ Using the ``AliasSetTracker`` class
435435

436436
Many transformations need information about alias **sets** that are active in
437437
some scope, rather than information about pairwise aliasing. The
438-
`AliasSetTracker <http://llvm.org/doxygen/classllvm_1_1AliasSetTracker.html>`__
438+
`AliasSetTracker <https://llvm.org/doxygen/classllvm_1_1AliasSetTracker.html>`__
439439
class is used to efficiently build these Alias Sets from the pairwise alias
440440
analysis information provided by the ``AliasAnalysis`` interface.
441441

llvm/docs/CMake.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ LLVM-specific variables
601601

602602
**LLVM_BUILD_INSTRUMENTED_COVERAGE**:BOOL
603603
If enabled, `source-based code coverage
604-
<http://clang.llvm.org/docs/SourceBasedCodeCoverage.html>`_ instrumentation
604+
<https://clang.llvm.org/docs/SourceBasedCodeCoverage.html>`_ instrumentation
605605
is enabled while building llvm.
606606

607607
**LLVM_CCACHE_BUILD**:BOOL

llvm/docs/CommandGuide/llvm-lipo.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ COMMANDS
7070
BUGS
7171
----
7272

73-
To report bugs, please visit <http://llvm.org/bugs/>.
73+
To report bugs, please visit <https://llvm.org/bugs/>.

llvm/docs/CommandGuide/llvm-objcopy.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ Otherwise, it exits with code 0.
545545
BUGS
546546
----
547547

548-
To report bugs, please visit <http://llvm.org/bugs/>.
548+
To report bugs, please visit <https://llvm.org/bugs/>.
549549

550550
There is a known issue with :option:`--input-target` and :option:`--target`
551551
causing only ``binary`` and ``ihex`` formats to have any effect. Other values

llvm/docs/CommandGuide/llvm-objdump.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ MACH-O ONLY OPTIONS AND COMMANDS
324324
BUGS
325325
----
326326

327-
To report bugs, please visit <http://llvm.org/bugs/>.
327+
To report bugs, please visit <https://llvm.org/bugs/>.
328328

329329
SEE ALSO
330330
--------

llvm/docs/CommandGuide/llvm-size.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,4 +195,4 @@ Otherwise, it exits with code 0.
195195
BUGS
196196
----
197197

198-
To report bugs, please visit <http://llvm.org/bugs/>.
198+
To report bugs, please visit <https://llvm.org/bugs/>.

llvm/docs/CommandGuide/llvm-strings.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,4 +127,4 @@ Otherwise, it exits with code 0.
127127
BUGS
128128
----
129129

130-
To report bugs, please visit <http://llvm.org/bugs/>.
130+
To report bugs, please visit <https://llvm.org/bugs/>.

llvm/docs/CommandGuide/llvm-strip.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ Otherwise, it exits with code 0.
190190
BUGS
191191
----
192192

193-
To report bugs, please visit <http://llvm.org/bugs/>.
193+
To report bugs, please visit <https://llvm.org/bugs/>.
194194

195195
SEE ALSO
196196
--------

llvm/docs/CompileCudaWithLLVM.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ HD functions cannot be overloaded by H or D functions with the same signature:
342342
When resolving an overloaded function, clang considers the host/device
343343
attributes of the caller and callee. These are used as a tiebreaker during
344344
overload resolution. See `IdentifyCUDAPreference
345-
<http://clang.llvm.org/doxygen/SemaCUDA_8cpp.html>`_ for the full set of rules,
345+
<https://clang.llvm.org/doxygen/SemaCUDA_8cpp.html>`_ for the full set of rules,
346346
but at a high level they are:
347347

348348
* D functions prefer to call other Ds. HDs are given lower priority.
@@ -507,12 +507,12 @@ LLVM to make it generate good GPU code. Among these changes are:
507507
reduce redundancy within straight-line code.
508508

509509
* `Aggressive speculative execution
510-
<http://llvm.org/docs/doxygen/html/SpeculativeExecution_8cpp_source.html>`_
510+
<https://llvm.org/docs/doxygen/html/SpeculativeExecution_8cpp_source.html>`_
511511
-- This is mainly for promoting straight-line scalar optimizations, which are
512512
most effective on code along dominator paths.
513513

514514
* `Memory space inference
515-
<http://llvm.org/doxygen/NVPTXInferAddressSpaces_8cpp_source.html>`_ --
515+
<https://llvm.org/doxygen/NVPTXInferAddressSpaces_8cpp_source.html>`_ --
516516
In PTX, we can operate on pointers that are in a particular "address space"
517517
(global, shared, constant, or local), or we can operate on pointers in the
518518
"generic" address space, which can point to anything. Operations in a
@@ -521,7 +521,7 @@ LLVM to make it generate good GPU code. Among these changes are:
521521
possible.
522522

523523
* `Bypassing 64-bit divides
524-
<http://llvm.org/docs/doxygen/html/BypassSlowDivision_8cpp_source.html>`_ --
524+
<https://llvm.org/docs/doxygen/html/BypassSlowDivision_8cpp_source.html>`_ --
525525
This was an existing optimization that we enabled for the PTX backend.
526526

527527
64-bit integer divides are much slower than 32-bit ones on NVIDIA GPUs.
@@ -536,7 +536,7 @@ LLVM to make it generate good GPU code. Among these changes are:
536536
SROA, which sometimes speed up code by over 10x.
537537

538538
(Programmers can force unrolling and inline using clang's `loop unrolling pragmas
539-
<http://clang.llvm.org/docs/AttributeReference.html#pragma-unroll-pragma-nounroll>`_
539+
<https://clang.llvm.org/docs/AttributeReference.html#pragma-unroll-pragma-nounroll>`_
540540
and ``__attribute__((always_inline))``.)
541541

542542
Publication
@@ -558,4 +558,4 @@ Obtaining Help
558558
==============
559559

560560
To obtain help on LLVM in general and its CUDA support, see `the LLVM
561-
community <http://llvm.org/docs/#mailing-lists>`_.
561+
community <https://llvm.org/docs/#mailing-lists>`_.

llvm/docs/FAQ.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ What source languages are supported?
7272
------------------------------------
7373

7474
LLVM currently has full support for C and C++ source languages through
75-
`Clang <http://clang.llvm.org/>`_. Many other language frontends have
75+
`Clang <https://clang.llvm.org/>`_. Many other language frontends have
7676
been written using LLVM, and an incomplete list is available at
77-
`projects with LLVM <http://llvm.org/ProjectsWithLLVM/>`_.
77+
`projects with LLVM <https://llvm.org/ProjectsWithLLVM/>`_.
7878

7979

8080
I'd like to write a self-hosting LLVM compiler. How should I interface with the LLVM middle-end optimizers and back-end code generators?

llvm/docs/GettingStarted.rst

+8-8
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ files needed to process intermediate representations and converts it into
1616
object files. Tools include an assembler, disassembler, bitcode analyzer, and
1717
bitcode optimizer. It also contains basic regression tests.
1818

19-
C-like languages use the `Clang <http://clang.llvm.org/>`_ front end. This
19+
C-like languages use the `Clang <https://clang.llvm.org/>`_ front end. This
2020
component compiles C, C++, Objective C, and Objective C++ code into LLVM bitcode
2121
-- and from there into object files, using LLVM.
2222

@@ -28,7 +28,7 @@ Getting the Source Code and Building LLVM
2828
=========================================
2929

3030
The LLVM Getting Started documentation may be out of date. The `Clang
31-
Getting Started <http://clang.llvm.org/get_started.html>`_ page might have more
31+
Getting Started <https://clang.llvm.org/get_started.html>`_ page might have more
3232
accurate information.
3333

3434
This is an example workflow and configuration to get and build the LLVM source:
@@ -522,7 +522,7 @@ you need to check the code out of SVN rather than git for some reason, you can
522522
do it like so:
523523

524524
* ``cd where-you-want-llvm-to-live``
525-
* Read-Only: ``svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm``
525+
* Read-Only: ``svn co https://llvm.org/svn/llvm-project/llvm/trunk llvm``
526526
* Read-Write: ``svn co https://user@llvm.org/svn/llvm-project/llvm/trunk llvm``
527527

528528
This will create an '``llvm``' directory in the current directory and fully
@@ -722,7 +722,7 @@ Note: There are some additional flags that need to be passed when building for
722722
iOS due to limitations in the iOS SDK.
723723

724724
Check :doc:`HowToCrossCompileLLVM` and `Clang docs on how to cross-compile in general
725-
<http://clang.llvm.org/docs/CrossCompilation.html>`_ for more information
725+
<https://clang.llvm.org/docs/CrossCompilation.html>`_ for more information
726726
about cross-compiling.
727727

728728
The Location of LLVM Object Files
@@ -789,7 +789,7 @@ Directory Layout
789789

790790
One useful source of information about the LLVM source base is the LLVM `doxygen
791791
<http://www.doxygen.org/>`_ documentation available at
792-
`<http://llvm.org/doxygen/>`_. The following is a brief introduction to code
792+
`<https://llvm.org/doxygen/>`_. The following is a brief introduction to code
793793
layout:
794794

795795
``llvm/examples``
@@ -1105,8 +1105,8 @@ things... there are many more interesting and complicated things that you can do
11051105
that aren't documented here (but we'll gladly accept a patch if you want to
11061106
write something up!). For more information about LLVM, check out:
11071107

1108-
* `LLVM Homepage <http://llvm.org/>`_
1109-
* `LLVM Doxygen Tree <http://llvm.org/doxygen/>`_
1110-
* `Starting a Project that Uses LLVM <http://llvm.org/docs/Projects.html>`_
1108+
* `LLVM Homepage <https://llvm.org/>`_
1109+
* `LLVM Doxygen Tree <https://llvm.org/doxygen/>`_
1110+
* `Starting a Project that Uses LLVM <https://llvm.org/docs/Projects.html>`_
11111111

11121112
.. _installing arcanist: https://secure.phabricator.com/book/phabricator/article/arcanist_quick_start/

llvm/docs/GettingStartedVS.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ to use LLVM. It contains an assembler, disassembler, bitcode analyzer and
1818
bitcode optimizer. It also contains basic regression tests that can be used to
1919
test the LLVM tools and the Clang front end.
2020

21-
The second piece is the `Clang <http://clang.llvm.org/>`_ front end. This
21+
The second piece is the `Clang <https://clang.llvm.org/>`_ front end. This
2222
component compiles C, C++, Objective C, and Objective C++ code into LLVM
2323
bitcode. Clang typically uses LLVM libraries to optimize the bitcode and emit
2424
machine code. LLVM fully supports the COFF object file format, which is
@@ -233,6 +233,6 @@ things... there are many more interesting and complicated things that you can
233233
do that aren't documented here (but we'll gladly accept a patch if you want to
234234
write something up!). For more information about LLVM, check out:
235235

236-
* `LLVM homepage <http://llvm.org/>`_
237-
* `LLVM doxygen tree <http://llvm.org/doxygen/>`_
236+
* `LLVM homepage <https://llvm.org/>`_
237+
* `LLVM doxygen tree <https://llvm.org/doxygen/>`_
238238

0 commit comments

Comments
 (0)