rt: Add a missing FIXME to rust_obstack.cpp for segmented stacks

This commit is contained in:
Patrick Walton 2011-09-01 11:43:29 -07:00
parent 876142f051
commit 156bc7f012

View file

@ -54,7 +54,7 @@ rust_obstack_chunk::alloc(size_t len, type_desc *tydesc) {
if (sizeof(rust_obstack_alloc) + len > size - alen) {
DPRINT("Not enough space, len=%lu!\n", len);
assert(0);
assert(0); // FIXME
return NULL; // Not enough space.
}