diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9e53a32..73ee149 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2019-12-10 Jakub Jelinek <jakub@redhat.com> + + * config/i386/i386.c (IX86_LEA_PRIORITY): Fix comment typos. + 2019-12-10 Martin Liska <mliska@suse.cz> PR tree-optimization/92862 diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 99d60bc..a17a069 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -14411,10 +14411,10 @@ distance_agu_use (unsigned int regno0, rtx_insn *insn) } /* Define this macro to tune LEA priority vs ADD, it take effect when - there is a dilemma of choicing LEA or ADD + there is a dilemma of choosing LEA or ADD Negative value: ADD is more preferred than LEA - Zero: Netrual - Positive value: LEA is more preferred than ADD*/ + Zero: Neutral + Positive value: LEA is more preferred than ADD. */ #define IX86_LEA_PRIORITY 0 /* Return true if usage of lea INSN has performance advantage |