[llvm] r204819 - Clarify that select is only non-branching on the IR-level, it often ends

Joerg Sonnenberger joerg at bec.de
Wed Mar 26 08:30:21 PDT 2014


Author: joerg
Date: Wed Mar 26 10:30:21 2014
New Revision: 204819

URL: http://llvm.org/viewvc/llvm-project?rev=204819&view=rev
Log:
Clarify that select is only non-branching on the IR-level, it often ends
up as jump table or other forms of branches on the machine level.

Modified:
    llvm/trunk/docs/LangRef.rst

Modified: llvm/trunk/docs/LangRef.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.rst?rev=204819&r1=204818&r2=204819&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.rst (original)
+++ llvm/trunk/docs/LangRef.rst Wed Mar 26 10:30:21 2014
@@ -6116,7 +6116,7 @@ Overview:
 """""""""
 
 The '``select``' instruction is used to choose one value based on a
-condition, without branching.
+condition, without IR-level branching.
 
 Arguments:
 """"""""""





More information about the llvm-commits mailing list