[llvm] r222678 - Correct path to regression tests in ExtendingLLVM

Sergey Dmitrouk sdmitrouk at accesssoftek.com
Mon Nov 24 11:40:07 PST 2014


Author: sdmitrouk
Date: Mon Nov 24 13:40:07 2014
New Revision: 222678

URL: http://llvm.org/viewvc/llvm-project?rev=222678&view=rev
Log:
Correct path to regression tests in ExtendingLLVM

Modified:
    llvm/trunk/docs/ExtendingLLVM.rst

Modified: llvm/trunk/docs/ExtendingLLVM.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ExtendingLLVM.rst?rev=222678&r1=222677&r2=222678&view=diff
==============================================================================
--- llvm/trunk/docs/ExtendingLLVM.rst (original)
+++ llvm/trunk/docs/ExtendingLLVM.rst Mon Nov 24 13:40:07 2014
@@ -58,7 +58,7 @@ function and then be turned into an inst
    If it is possible to constant fold your intrinsic, add support to it in the
    ``canConstantFoldCallTo`` and ``ConstantFoldCall`` functions.
 
-#. ``llvm/test/Regression/*``:
+#. ``llvm/test/*``:
 
    Add test cases for your test cases to the test suite
 
@@ -164,10 +164,10 @@ complicated behavior in a single node (r
 
 #. TODO: document complex patterns.
 
-#. ``llvm/test/Regression/CodeGen/*``:
+#. ``llvm/test/CodeGen/*``:
 
    Add test cases for your new node to the test suite.
-   ``llvm/test/Regression/CodeGen/X86/bswap.ll`` is a good example.
+   ``llvm/test/CodeGen/X86/bswap.ll`` is a good example.
 
 Adding a new instruction
 ========================
@@ -217,7 +217,7 @@ Adding a new instruction
 
    add support for your instruction to code generators, or add a lowering pass.
 
-#. ``llvm/test/Regression/*``:
+#. ``llvm/test/*``:
 
    add your test cases to the test suite.
 





More information about the llvm-commits mailing list