1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

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

llvm-svn: 44291
This commit is contained in:
Chris Lattner 2007-11-23 22:19:33 +00:00
parent 265752ae8f
commit 4aab2642b9

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)