Removed last change, did not work with fltcalc
[libfirm] / ir / adt / set.c
index f22c897..fffe229 100644 (file)
@@ -179,7 +179,7 @@ SET *
   SET *table = xmalloc (sizeof (SET));
 
   if (nslots > SEGMENT_SIZE * DIRECTORY_SIZE)
-    n_slots = DIRECTORY_SIZE;
+    nslots = DIRECTORY_SIZE;
   else {
     assert (nslots >= 0);
     /* Adjust nslots up to next power of 2, minimum SEGMENT_SIZE */