[llvm-branch-commits] [llvm] 8e50461 - [LangRef] missing link, minor fix

Juneyoung Lee via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Mon Nov 30 06:15:04 PST 2020


Author: Juneyoung Lee
Date: 2020-11-30T23:09:36+09:00
New Revision: 8e504615e9f1b27c06237a56ee786a16568851f1

URL: https://github.com/llvm/llvm-project/commit/8e504615e9f1b27c06237a56ee786a16568851f1
DIFF: https://github.com/llvm/llvm-project/commit/8e504615e9f1b27c06237a56ee786a16568851f1.diff

LOG: [LangRef] missing link, minor fix

Added: 
    

Modified: 
    llvm/docs/LangRef.rst

Removed: 
    


################################################################################
diff  --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst
index e359fc730515..1964f2416b8f 100644
--- a/llvm/docs/LangRef.rst
+++ b/llvm/docs/LangRef.rst
@@ -3667,12 +3667,12 @@ a poison value.
 
 Poison value behavior is defined in terms of value *dependence*:
 
--  Values other than :ref:`phi <i_phi>` nodes and :ref:`select <i_select>`
-   instructions depend on their operands.
+-  Values other than :ref:`phi <i_phi>` nodes, :ref:`select <i_select>`, and
+   :ref:`freeze <i_freeze>` instructions depend on their operands.
 -  :ref:`Phi <i_phi>` nodes depend on the operand corresponding to
    their dynamic predecessor basic block.
--  Select instructions depend on their condition operand and their
-   selected operand.
+-  :ref:`Select <i_select>` instructions depend on their condition operand and
+   their selected operand.
 -  Function arguments depend on the corresponding actual argument values
    in the dynamic callers of their functions.
 -  :ref:`Call <i_call>` instructions depend on the :ref:`ret <i_ret>`


        


More information about the llvm-branch-commits mailing list