[llvm] r219947 - Fix lang-ref doc bug: s/icmp lt/icmp slt/
Jonathan Roelofs
jonathan at codesourcery.com
Thu Oct 16 12:28:10 PDT 2014
Author: jroelofs
Date: Thu Oct 16 14:28:10 2014
New Revision: 219947
URL: http://llvm.org/viewvc/llvm-project?rev=219947&view=rev
Log:
Fix lang-ref doc bug: s/icmp lt/icmp slt/
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=219947&r1=219946&r2=219947&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.rst (original)
+++ llvm/trunk/docs/LangRef.rst Thu Oct 16 14:28:10 2014
@@ -2395,7 +2395,7 @@ allowed to assume that the '``undef``' o
%C = xor %B, %B
%D = undef
- %E = icmp lt %D, 4
+ %E = icmp slt %D, 4
%F = icmp gte %D, 4
Safe:
More information about the llvm-commits
mailing list