Deleted Added
full compact
c-typeck.c (96489) c-typeck.c (103445)
1/* Build expressions with type checking for C compiler.
2 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free

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

1488 }
1489 else
1490 ref = objc_ivar;
1491 }
1492
1493 if (TREE_TYPE (ref) == error_mark_node)
1494 return error_mark_node;
1495
1/* Build expressions with type checking for C compiler.
2 Copyright (C) 1987, 1988, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free

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

1488 }
1489 else
1490 ref = objc_ivar;
1491 }
1492
1493 if (TREE_TYPE (ref) == error_mark_node)
1494 return error_mark_node;
1495
1496 assemble_external (ref);
1496 if (!skip_evaluation)
1497 assemble_external (ref);
1497 TREE_USED (ref) = 1;
1498
1499 if (TREE_CODE (ref) == CONST_DECL)
1500 {
1501 ref = DECL_INITIAL (ref);
1502 TREE_CONSTANT (ref) = 1;
1503 }
1504

--- 5724 unchanged lines hidden ---
1498 TREE_USED (ref) = 1;
1499
1500 if (TREE_CODE (ref) == CONST_DECL)
1501 {
1502 ref = DECL_INITIAL (ref);
1503 TREE_CONSTANT (ref) = 1;
1504 }
1505

--- 5724 unchanged lines hidden ---