From 566047c21e297eef4295a3af9892a506bcab4754 Mon Sep 17 00:00:00 2001 From: David Starner Date: Thu, 28 Oct 1999 09:13:40 +0000 Subject: 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 --- gcc/c-pragma.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'gcc/c-pragma.c') diff --git a/gcc/c-pragma.c b/gcc/c-pragma.c index 36aa2c4..86bd5c4 100644 --- a/gcc/c-pragma.c +++ b/gcc/c-pragma.c @@ -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; -- cgit v1.1