[llvm] r271315 - [Docs] CodeGen has supported vector icmp/fcmp for a long time.

Ahmed Bougacha via llvm-commits llvm-commits at lists.llvm.org
Tue May 31 11:50:07 PDT 2016


Author: ab
Date: Tue May 31 13:50:05 2016
New Revision: 271315

URL: http://llvm.org/viewvc/llvm-project?rev=271315&view=rev
Log:
[Docs] CodeGen has supported vector icmp/fcmp for a long time.

The IR support is already well-documented.

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=271315&r1=271314&r2=271315&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.rst (original)
+++ llvm/trunk/docs/LangRef.rst Tue May 31 13:50:05 2016
@@ -8238,9 +8238,6 @@ Example:
       <result> = icmp ule i16 -4, 5        ; yields: result=false
       <result> = icmp sge i16  4, 5        ; yields: result=false
 
-Note that the code generator does not yet support vector types with the
-``icmp`` instruction.
-
 .. _i_fcmp:
 
 '``fcmp``' Instruction
@@ -8353,9 +8350,6 @@ Example:
       <result> = fcmp olt float 4.0, 5.0    ; yields: result=true
       <result> = fcmp ueq double 1.0, 2.0   ; yields: result=false
 
-Note that the code generator does not yet support vector types with the
-``fcmp`` instruction.
-
 .. _i_phi:
 
 '``phi``' Instruction




More information about the llvm-commits mailing list