# HG changeset patch # User Anders Halager # Date 1208535876 -7200 # Node ID 7e79c42d20f5da18b5221ffa1715cb0eb544e574 # Parent ab5f876b6e8441b9c6a44be2b8b3b5029534ac7e Fixed two typos in the comparison operators diff -r ab5f876b6e84 -r 7e79c42d20f5 gen/LLVMGen.d --- 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(); }