diff options
author | Kai Tietz <ktietz@redhat.com> | 2011-04-02 20:41:49 +0200 |
---|---|---|
committer | Kai Tietz <ktietz@gcc.gnu.org> | 2011-04-02 20:41:49 +0200 |
commit | f90298e1d00b14f29b982b45009276a313db196e (patch) | |
tree | fa546229ba77c3956936035ede3e3314be0d0807 /gcc | |
parent | 1cd8eab12bac5e1e59d7ac1138044a09458c4048 (diff) | |
download | gcc-f90298e1d00b14f29b982b45009276a313db196e.zip gcc-f90298e1d00b14f29b982b45009276a313db196e.tar.gz gcc-f90298e1d00b14f29b982b45009276a313db196e.tar.bz2 |
re PR target/48416 (Revision 171890 failed to build)
2011-04-02 Kai Tietz <ktietz@redhat.com>
PR target/48416
* i386.c (ix86_function_arg_boundary): Fix printf formatter.
From-SVN: r171892
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/config/i386/i386.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cc26623..d29b879 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2011-04-02 Kai Tietz <ktietz@redhat.com> + PR target/48416 + * i386.c (ix86_function_arg_boundary): Fix printf formatter. + * i386.c (ix86_is_msabi_thiscall): New helper function. (ix86_is_type_thiscall): New helper function. (ix86_comp_type_attributes): Handle thiscall for method-functions diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 0bb46d5..2b2823a 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -7485,7 +7485,7 @@ ix86_function_arg_boundary (enum machine_mode mode, const_tree type) warned = true; inform (input_location, "The ABI for passing parameters with %d-byte" - " alignment has changed in GCC 4.6 (mode:%u, %d saved", + " alignment has changed in GCC 4.6", align / BITS_PER_UNIT); } } |