changeset 19:7e79c42d20f5

Fixed two typos in the comparison operators
author Anders Halager <halager@gmail.com>
date Fri, 18 Apr 2008 18:24:36 +0200
parents ab5f876b6e84
children 95e3940d91d4
files gen/LLVMGen.d
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/gen/LLVMGen.d	Fri Apr 18 17:59:01 2008 +0200
+++ b/gen/LLVMGen.d	Fri Apr 18 18:24:36 2008 +0200
@@ -38,8 +38,8 @@
             op.Ne       : "icmp ne",
             op.Lt       : "icmp slt",
             op.Le       : "icmp sle",
-            op.Gt       : "icmp glt",
-            op.Ge       : "icmp gle"
+            op.Gt       : "icmp sgt",
+            op.Ge       : "icmp sge"
         ];
         table = new SimpleSymbolTable();
     }