| OLD | NEW |
| 1 /* Output variables, constants and external declarations, for GNU compiler. | 1 /* Output variables, constants and external declarations, for GNU compiler. |
| 2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, | 2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, |
| 3 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, | 3 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, |
| 4 2010 Free Software Foundation, Inc. | 4 2010 Free Software Foundation, Inc. |
| 5 | 5 |
| 6 This file is part of GCC. | 6 This file is part of GCC. |
| 7 | 7 |
| 8 GCC is free software; you can redistribute it and/or modify it under | 8 GCC is free software; you can redistribute it and/or modify it under |
| 9 the terms of the GNU General Public License as published by the Free | 9 the terms of the GNU General Public License as published by the Free |
| 10 Software Foundation; either version 3, or (at your option) any later | 10 Software Foundation; either version 3, or (at your option) any later |
| (...skipping 1702 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1713 | 1713 |
| 1714 /* Switch to the correct text section for the start of the function. */ | 1714 /* Switch to the correct text section for the start of the function. */ |
| 1715 | 1715 |
| 1716 switch_to_section (function_section (decl)); | 1716 switch_to_section (function_section (decl)); |
| 1717 if (flag_reorder_blocks_and_partition | 1717 if (flag_reorder_blocks_and_partition |
| 1718 && !hot_label_written) | 1718 && !hot_label_written) |
| 1719 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.hot_section_label); | 1719 ASM_OUTPUT_LABEL (asm_out_file, crtl->subsections.hot_section_label); |
| 1720 | 1720 |
| 1721 /* Tell assembler to move to target machine's alignment for functions. */ | 1721 /* Tell assembler to move to target machine's alignment for functions. */ |
| 1722 align = floor_log2 (DECL_ALIGN (decl) / BITS_PER_UNIT); | 1722 align = floor_log2 (DECL_ALIGN (decl) / BITS_PER_UNIT); |
error: old chunk mismatch |
None
| OLD | NEW |