diff options
author | David Starner <dstarner98@aasaa.ofe.org> | 1999-10-28 09:13:40 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-10-28 03:13:40 -0600 |
commit | 566047c21e297eef4295a3af9892a506bcab4754 (patch) | |
tree | 23046a5c7a99ae7bd891ed463a086bb9f1713194 /gcc/c-pragma.c | |
parent | 0b24a660f3434cd3dc0e86b84a1248ce0b5f4cc9 (diff) | |
download | gcc-566047c21e297eef4295a3af9892a506bcab4754.zip gcc-566047c21e297eef4295a3af9892a506bcab4754.tar.gz gcc-566047c21e297eef4295a3af9892a506bcab4754.tar.bz2 |
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
Diffstat (limited to 'gcc/c-pragma.c')
-rw-r--r-- | gcc/c-pragma.c | 6 |
1 files changed, 0 insertions, 6 deletions
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; |