Deleted Added
full compact
varasm.c (72562) varasm.c (74473)
1/* Output variables, constants and external declarations, for GNU compiler.
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001 Free Software Foundation, Inc.
4
5This file is part of GNU CC.
6
7GNU CC is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by

--- 3480 unchanged lines hidden (view full) ---

3489 gen_rtx_PLUS (GET_MODE (x),
3490 XEXP (XEXP (x, 0), 0),
3491 XEXP (XEXP (x, 0), 1)));
3492 else
3493 x = GEN_INT (INTVAL (x));
3494
3495 pop_obstacks ();
3496 }
1/* Output variables, constants and external declarations, for GNU compiler.
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001 Free Software Foundation, Inc.
4
5This file is part of GNU CC.
6
7GNU CC is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by

--- 3480 unchanged lines hidden (view full) ---

3489 gen_rtx_PLUS (GET_MODE (x),
3490 XEXP (XEXP (x, 0), 0),
3491 XEXP (XEXP (x, 0), 1)));
3492 else
3493 x = GEN_INT (INTVAL (x));
3494
3495 pop_obstacks ();
3496 }
3497 if (GET_CODE (x) == LABEL_REF)
3498 {
3499 extern rtx forced_labels;
3500
3497
3501 push_obstacks_nochange ();
3502 rtl_in_saveable_obstack ();
3503
3504 forced_labels = gen_rtx_EXPR_LIST (VOIDmode,
3505 XEXP (x, 0),
3506 forced_labels);
3507 pop_obstacks ();
3508 }
3509
3510 /* Allocate a pool constant descriptor, fill it in, and chain it in. */
3511
3512 pool = (struct pool_constant *) savealloc (sizeof (struct pool_constant));
3513 pool->desc = desc;
3514 pool->constant = x;
3515 pool->mode = mode;
3516 pool->labelno = const_labelno;
3517 pool->align = align;

--- 985 unchanged lines hidden ---
3498 /* Allocate a pool constant descriptor, fill it in, and chain it in. */
3499
3500 pool = (struct pool_constant *) savealloc (sizeof (struct pool_constant));
3501 pool->desc = desc;
3502 pool->constant = x;
3503 pool->mode = mode;
3504 pool->labelno = const_labelno;
3505 pool->align = align;

--- 985 unchanged lines hidden ---