]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
i386.c (ix86_target_string): Output 'flags', not 'isa', when processing flag options.
authorUros Bizjak <ubizjak@gmail.com>
Sun, 2 May 2010 19:57:13 +0000 (21:57 +0200)
committerUros Bizjak <uros@gcc.gnu.org>
Sun, 2 May 2010 19:57:13 +0000 (21:57 +0200)
* config/i386/i386.c (ix86_target_string): Output 'flags', not 'isa',
when processing flag options.

From-SVN: r158979

gcc/ChangeLog
gcc/config/i386/i386.c

index bfce823cee1f4232401263045ac8833e3b115fd6..49fe658285759710c210d38d1c0454f599b6bae1 100644 (file)
@@ -1,3 +1,8 @@
+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
index 8cec42f8e5282762ccae9ffccdfdf97a72696fc8..10aac6e4e7be706119f58762883ac31471c93d54 100644 (file)
@@ -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.  */