Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(364)

Side by Side Diff: gcc/gcc/ira.c

Issue 2866019: [gcc] Kill NACL_LEA_MATCH_ADDRESS_OPERAND and insn_is_nacl_lea. (Closed) Base URL: ssh://git@chromiumos-git/nacl-toolchain.git
Patch Set: prepare to commit Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gcc/gcc/genattrtab.c ('k') | gcc/gcc/postreload.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
None
OLDNEW
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
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

OLDNEW
« no previous file with comments | « gcc/gcc/genattrtab.c ('k') | gcc/gcc/postreload.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698