Commit 566047c2 by David Starner Committed by Jeff Law

c-pragma.c (push_alignment): Don't check the return value of xmalloc.

        * c-pragma.c (push_alignment): Don't check the return value
        of xmalloc.

From-SVN: r30233
parent 0b24a660
Thu Oct 28 03:12:02 1999 David Starner <dstarner98@aasaa.ofe.org>
* c-pragma.c (push_alignment): Don't check the return value
of xmalloc.
Thu Oct 28 03:08:38 1999 Matteo Frigo <athena@fftw.org>
* sparc.h (ADJUST_COST): Fix thinko.
......
......@@ -91,12 +91,6 @@ Alignment must be a small power of two, not %d, in #pragma pack",
entry = (align_stack *) xmalloc (sizeof (* entry));
if (entry == NULL)
{
warning ("Out of memory pushing #pragma pack");
return 0;
}
entry->alignment = alignment;
entry->num_pushes = 1;
entry->id = id;
......
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