OSDN Git Service

* config/i386/i386.c (ix86_target_string): Output 'flags', not 'isa',
authoruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 2 May 2010 19:57:13 +0000 (19:57 +0000)
committerMasaki Muranaka <monaka@monami-software.com>
Sun, 23 May 2010 05:37:47 +0000 (14:37 +0900)
when processing flag options.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@158979 138bc75d-0d04-0410-961f-82ee72b054a4

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

index bfce823..49fe658 100644 (file)
@@ -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
index 8cec42f..10aac6e 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.  */