diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-09-06 18:34:38 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-09-06 18:34:38 +0000 |
commit | 69156b4c20249e7800cc09e0eef0beb3d15ac1ad (patch) | |
tree | 461d3cf041290f4a99740d540bf0973d6084f98e /docs/ExtendingLLVM.rst | |
parent | ee8648bdac07986a0f1ec897b02ec82a2f144d46 (diff) |
Diffstat (limited to 'docs/ExtendingLLVM.rst')
-rw-r--r-- | docs/ExtendingLLVM.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ExtendingLLVM.rst b/docs/ExtendingLLVM.rst index 56c48af1ff35..3fd54c8360e5 100644 --- a/docs/ExtendingLLVM.rst +++ b/docs/ExtendingLLVM.rst @@ -15,7 +15,7 @@ When you come to this realization, stop and think. Do you really need to extend LLVM? Is it a new fundamental capability that LLVM does not support at its current incarnation or can it be synthesized from already pre-existing LLVM elements? If you are not sure, ask on the `LLVM-dev -<http://mail.cs.uiuc.edu/mailman/listinfo/llvmdev>`_ list. The reason is that +<http://lists.llvm.org/mailman/listinfo/llvm-dev>`_ list. The reason is that extending LLVM will get involved as you need to update all the different passes that you intend to use with your extension, and there are ``many`` LLVM analyses and transformations, so it may be quite a bit of work. |