diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2010-05-02 21:57:13 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2010-05-02 21:57:13 +0200 |
commit | 18fdef206f39e4034afa3babe8ad38543bcdd7b3 (patch) | |
tree | d801e3aa6e74f225ec87138aaecfc03c13f50f38 /gcc | |
parent | 7c393241cf4e01cce7e893602a9f28daab7a7fa1 (diff) | |
download | gcc-18fdef206f39e4034afa3babe8ad38543bcdd7b3.zip gcc-18fdef206f39e4034afa3babe8ad38543bcdd7b3.tar.gz gcc-18fdef206f39e4034afa3babe8ad38543bcdd7b3.tar.bz2 |
i386.c (ix86_target_string): Output 'flags', not 'isa', when processing flag options.
* config/i386/i386.c (ix86_target_string): Output 'flags', not 'isa',
when processing flag options.
From-SVN: r158979
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bfce823..49fe658 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2010-05-02 Uros Bizjak <ubizjak@gmail.com> + * config/i386/i386.c (ix86_target_string): Output 'flags', not 'isa', + when processing flag options. + +2010-05-02 Uros Bizjak <ubizjak@gmail.com> + * gcov-iov.c (main): Change format string placeholder from %#08x to 0x%08x. * genchecksum.c (dosum): Change format string placeholder diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 8cec42f..10aac6e 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -2529,7 +2529,7 @@ ix86_target_string (int isa, int flags, const char *arch, const char *tune, if (flags && add_nl_p) { opts[num++][0] = target_other; - sprintf (target_other, "(other flags: %#x)", isa); + sprintf (target_other, "(other flags: %#x)", flags); } /* Add -fpmath= option. */ |