OSDN Git Service

(do_tablejump): Pass 1 for unsigned flag to emit_cmp_insn.
authorwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 14 Jan 1993 19:16:40 +0000 (19:16 +0000)
committerwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 14 Jan 1993 19:16:40 +0000 (19:16 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@3233 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/expr.c

index ff5e90c..3fd6825 100644 (file)
@@ -7415,7 +7415,7 @@ do_tablejump (index, mode, range, table_label, default_label)
      or equal to the minimum value of the range and less than or equal to
      the maximum value of the range.  */
 
-  emit_cmp_insn (range, index, LTU, NULL_RTX, mode, 0, 0);
+  emit_cmp_insn (range, index, LTU, NULL_RTX, mode, 1, 0);
   emit_jump_insn (gen_bltu (default_label));
 
   /* If index is in range, it must fit in Pmode.