Replace "if (x) free (x)" with "free (x)", gas
[deliverable/binutils-gdb.git] / gas / config / tc-m68k.c
index 490df5dbf5f150505c63335ce693510a8b282dd4..cbb227a333dfa930cb31e535e2b8e64272b1d8ff 100644 (file)
@@ -6135,8 +6135,7 @@ pop_mri_control (void)
 
   n = mri_control_stack;
   mri_control_stack = n->outer;
-  if (n->top != NULL)
-    free (n->top);
+  free (n->top);
   free (n->next);
   free (n->bottom);
   free (n);
This page took 0.024462 seconds and 4 git commands to generate.