!< is >=, not >. Thanks to Max Hailperin for pointing this out!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44291 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2007-11-23 22:19:33 +00:00
parent e4dc717585
commit 61ad449be8

View File

@ -97,7 +97,7 @@ def unary!(v)
# Define &gt; with the same precedence as &lt;.
def binary&gt; 10 (LHS RHS)
!(LHS &lt; RHS); # alternatively, could just use "RHS &lt; LHS"
RHS &lt; LHS;
# Binary "logical or", (note that it does not "short circuit")
def binary| 5 (LHS RHS)
@ -532,7 +532,7 @@ def unary-(v)
# Define &gt; with the same precedence as &gt;.
def binary&gt; 10 (LHS RHS)
!(LHS &lt; RHS);
RHS &lt; LHS;
# Binary logical or, which does not short circuit.
def binary| 5 (LHS RHS)