Commit 3c0a049e by Richard Henderson Committed by Richard Henderson

* g++.old-deja/g++.eh/badalloc1.C (malloc): Fix typo.

From-SVN: r48246
parent c6dcc80e
2001-12-21 Richard Henderson <rth@redhat.com>
* g++.old-deja/g++.eh/badalloc1.C (malloc): Fix typo.
2001-12-20 Jakub Jelinek <jakub@redhat.com>
* gcc.c-torture/compile/20011218-1.c: New test.
......
......@@ -36,7 +36,7 @@ extern "C" void *malloc (size_t size)
return 0;
p->size = size;
size = (size + __alignof__(object) + 1) & - __alignof__(object);
size = (size + __alignof__(object) - 1) & - __alignof__(object);
pos += size + sizeof(object);
// Verify that we didn't run out of memory before getting initialized.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment