Make frag fr_fix unsigned
[deliverable/binutils-gdb.git] / gas / config / tc-arc.c
index a4f617a9911f1194dec778487460fa9afcdb7e20..6cc4726e2ef84d9ca9a6b66fde77c279dec18231 100644 (file)
@@ -3271,7 +3271,7 @@ md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED,
   int size, fix;
   struct arc_relax_type *relax_arg = &fragP->tc_frag_data;
 
-  fix = (fragP->fr_fix < 0 ? 0 : fragP->fr_fix);
+  fix = fragP->fr_fix;
   dest = fragP->fr_literal + fix;
   table_entry = TC_GENERIC_RELAX_TABLE + fragP->fr_subtype;
 
This page took 0.023711 seconds and 4 git commands to generate.