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

Unified Diff: gcc/gcc/config/i386/i386.c

Side-by-side diff isn't available for this file because of its large size.
Issue 6271009: [gcc] Replace rsp/rbp lea base with esp/ebp (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/nacl-toolchain.git@master
Patch Set: Created 9 years, 11 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:
Download patch
« no previous file with comments | « no previous file | gcc/gcc/config/i386/i386.md » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcc/gcc/config/i386/i386.c
diff --git a/gcc/gcc/config/i386/i386.c b/gcc/gcc/config/i386/i386.c
index 82802ef35ef979c138903e1682bc2624470aeb9b..7687ca0bd04bc374e75c38a538a871e74fef27d3 100644
--- a/gcc/gcc/config/i386/i386.c
+++ b/gcc/gcc/config/i386/i386.c
@@ -1818,7 +1818,6 @@ static bool ix86_valid_target_attribute_p (tree, tree, tree, int);
static bool ix86_valid_target_attribute_inner_p (tree, char *[]);
static bool ix86_can_inline_p (tree, tree);
static void ix86_set_current_function (tree);
-static int ix86_lea_decompose_address (rtx, struct ix86_address *);
static int legitimate_address_parts_p (const struct ix86_address *, int);
static void print_operand_address_parts (FILE *, const struct ix86_address *);
@@ -8796,7 +8795,7 @@ ix86_output_function_epilogue (FILE *file ATTRIBUTE_UNUSED,
instruction.
WARNING: This is a copy-paste of the original ix86_decompose_address. */
-static int
+int
ix86_lea_decompose_address (rtx addr, struct ix86_address *out)
{
rtx base = NULL_RTX, index = NULL_RTX, disp = NULL_RTX;
« no previous file with comments | « no previous file | gcc/gcc/config/i386/i386.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698