| OLD | NEW |
| 1 /* Integrated Register Allocator (IRA) entry point. | 1 /* Integrated Register Allocator (IRA) entry point. |
| 2 Copyright (C) 2006, 2007, 2008, 2009 | 2 Copyright (C) 2006, 2007, 2008, 2009 |
| 3 Free Software Foundation, Inc. | 3 Free Software Foundation, Inc. |
| 4 Contributed by Vladimir Makarov <vmakarov@redhat.com>. | 4 Contributed by Vladimir Makarov <vmakarov@redhat.com>. |
| 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 1296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1307 int i, j; | 1307 int i, j; |
| 1308 rtx test_reg1, test_reg2, move_pat, move_insn; | 1308 rtx test_reg1, test_reg2, move_pat, move_insn; |
| 1309 | 1309 |
| 1310 if (ira_prohibited_mode_move_regs_initialized_p) | 1310 if (ira_prohibited_mode_move_regs_initialized_p) |
| 1311 return; | 1311 return; |
| 1312 ira_prohibited_mode_move_regs_initialized_p = true; | 1312 ira_prohibited_mode_move_regs_initialized_p = true; |
| 1313 test_reg1 = gen_rtx_REG (VOIDmode, 0); | 1313 test_reg1 = gen_rtx_REG (VOIDmode, 0); |
| 1314 test_reg2 = gen_rtx_REG (VOIDmode, 0); | 1314 test_reg2 = gen_rtx_REG (VOIDmode, 0); |
| 1315 move_pat = gen_rtx_SET (VOIDmode, test_reg1, test_reg2); | 1315 move_pat = gen_rtx_SET (VOIDmode, test_reg1, test_reg2); |
| 1316 move_insn = gen_rtx_INSN (VOIDmode, 0, 0, 0, 0, 0, move_pat, -1, 0); | 1316 move_insn = gen_rtx_INSN (VOIDmode, 0, 0, 0, 0, 0, move_pat, -1, 0); |
error: old chunk mismatch |
None
| OLD | NEW |