diff options
author | Ismail Donmez <ismail@i10z.com> | 2017-02-17 08:26:11 +0000 |
---|---|---|
committer | Ismail Donmez <ismail@i10z.com> | 2017-02-17 08:26:11 +0000 |
commit | c7ff81435d5b151df2770a5f1cb01cd5d6aa2970 (patch) | |
tree | c8e9b7f611605ddb36da8c048bbe96591da14c41 | |
parent | cd01a363d6860be52e6c4dfa55737617e07a8549 (diff) | |
download | bcm5719-llvm-c7ff81435d5b151df2770a5f1cb01cd5d6aa2970.tar.gz bcm5719-llvm-c7ff81435d5b151df2770a5f1cb01cd5d6aa2970.zip |
Update Bugzilla URLs in docs
llvm-svn: 295432
-rw-r--r-- | llvm/docs/DeveloperPolicy.rst | 4 | ||||
-rw-r--r-- | llvm/docs/HowToSubmitABug.rst | 2 | ||||
-rw-r--r-- | llvm/docs/Lexicon.rst | 2 | ||||
-rw-r--r-- | llvm/docs/ProgrammersManual.rst | 2 | ||||
-rw-r--r-- | llvm/docs/Statepoints.rst | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/llvm/docs/DeveloperPolicy.rst b/llvm/docs/DeveloperPolicy.rst index 9ec6fb84636..97e05723437 100644 --- a/llvm/docs/DeveloperPolicy.rst +++ b/llvm/docs/DeveloperPolicy.rst @@ -62,7 +62,7 @@ way to see what other people are interested in and watching the flow of the project as a whole. We recommend that active developers register an email account with `LLVM -Bugzilla <http://llvm.org/bugs/>`_ and preferably subscribe to the `llvm-bugs +Bugzilla <https://bugs.llvm.org/>`_ and preferably subscribe to the `llvm-bugs <http://lists.llvm.org/mailman/listinfo/llvm-bugs>`_ email list to keep track of bugs and enhancements occurring in LLVM. We really appreciate people who are proactive at catching incoming bugs in their components and dealing with them @@ -261,7 +261,7 @@ the future that the change is responsible for. For example: * The changes should not cause performance or correctness regressions in code compiled by LLVM on all applicable targets. -* You are expected to address any `Bugzilla bugs <http://llvm.org/bugs/>`_ that +* You are expected to address any `Bugzilla bugs <https://bugs.llvm.org/>`_ that result from your change. We prefer for this to be handled before submission but understand that it isn't diff --git a/llvm/docs/HowToSubmitABug.rst b/llvm/docs/HowToSubmitABug.rst index 9f997d2757d..25cb2c8c80d 100644 --- a/llvm/docs/HowToSubmitABug.rst +++ b/llvm/docs/HowToSubmitABug.rst @@ -19,7 +19,7 @@ section to narrow down the bug so that the person who fixes it will be able to find the problem more easily. Once you have a reduced test-case, go to `the LLVM Bug Tracking System -<http://llvm.org/bugs/enter_bug.cgi>`_ and fill out the form with the +<https://bugs.llvm.org/enter_bug.cgi>`_ and fill out the form with the necessary details (note that you don't need to pick a category, just use the "new-bugs" category if you're not sure). The bug description should contain the following information: diff --git a/llvm/docs/Lexicon.rst b/llvm/docs/Lexicon.rst index de929bec1b0..5d16091e27e 100644 --- a/llvm/docs/Lexicon.rst +++ b/llvm/docs/Lexicon.rst @@ -182,7 +182,7 @@ P **PR** Problem report. A bug filed on `the LLVM Bug Tracking System - <http://llvm.org/bugs/enter_bug.cgi>`_. + <https://bugs.llvm.org/enter_bug.cgi>`_. **PRE** Partial Redundancy Elimination diff --git a/llvm/docs/ProgrammersManual.rst b/llvm/docs/ProgrammersManual.rst index 1c96046bf40..1e2e8eb0248 100644 --- a/llvm/docs/ProgrammersManual.rst +++ b/llvm/docs/ProgrammersManual.rst @@ -2903,7 +2903,7 @@ Another way is to only call ``getPointerToFunction()`` from the When the JIT is configured to compile lazily (using ``ExecutionEngine::DisableLazyCompilation(false)``), there is currently a `race -condition <http://llvm.org/bugs/show_bug.cgi?id=5184>`_ in updating call sites +condition <https://bugs.llvm.org/show_bug.cgi?id=5184>`_ in updating call sites after a function is lazily-jitted. It's still possible to use the lazy JIT in a threaded program if you ensure that only one thread at a time can call any particular lazy stub and that the JIT lock guards any IR access, but we suggest diff --git a/llvm/docs/Statepoints.rst b/llvm/docs/Statepoints.rst index 29b1be37a89..7f2b2054481 100644 --- a/llvm/docs/Statepoints.rst +++ b/llvm/docs/Statepoints.rst @@ -831,7 +831,7 @@ Bugs and Enhancements Currently known bugs and enhancements under consideration can be tracked by performing a `bugzilla search -<http://llvm.org/bugs/buglist.cgi?cmdtype=runnamed&namedcmd=Statepoint%20Bugs&list_id=64342>`_ +<https://bugs.llvm.org/buglist.cgi?cmdtype=runnamed&namedcmd=Statepoint%20Bugs&list_id=64342>`_ for [Statepoint] in the summary field. When filing new bugs, please use this tag so that interested parties see the newly filed bug. As with most LLVM features, design discussions take place on `llvm-dev |