public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/63223] New: [avr] Make jumptables work with -Wl,--section-start,.text=
@ 2014-09-11  7:56 gjl at gcc dot gnu.org
  2014-09-11  8:09 ` [Bug target/63223] " gjl at gcc dot gnu.org
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: gjl at gcc dot gnu.org @ 2014-09-11  7:56 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63223

            Bug ID: 63223
           Summary: [avr] Make jumptables work with
                    -Wl,--section-start,.text=
           Product: gcc
           Version: 4.8.0
            Status: UNCONFIRMED
          Severity: enhancement
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gjl at gcc dot gnu.org

avr-gcc assumes that jumptables in section .progmem.gcc_sw_table are located in
the lower 64k of flash and uses LPM to read from these tables.

This does no more hold if the code is shifted to a higher address by, e.g.
-Wl,--section-start,.text=... which is commonly used with bootloadres.

This PR implements ELPM to access jumptables as needed.


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug target/63223] [avr] Make jumptables work with -Wl,--section-start,.text=
  2014-09-11  7:56 [Bug target/63223] New: [avr] Make jumptables work with -Wl,--section-start,.text= gjl at gcc dot gnu.org
@ 2014-09-11  8:09 ` gjl at gcc dot gnu.org
  2014-09-11  8:20 ` gjl at gcc dot gnu.org
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: gjl at gcc dot gnu.org @ 2014-09-11  8:09 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63223

--- Comment #1 from Georg-Johann Lay <gjl at gcc dot gnu.org> ---
Author: gjl
Date: Thu Sep 11 08:08:17 2014
New Revision: 215152

URL: https://gcc.gnu.org/viewcvs?rev=215152&root=gcc&view=rev
Log:
gcc/
    PR target/63223
    * config/avr/avr.md (*tablejump.3byte-pc): New insn.
    (*tablejump): Restrict to !AVR_HAVE_EIJMP_EICALL.  Add void clobber.
    (casesi): Expand to *tablejump.3byte-pc if AVR_HAVE_EIJMP_EICALL.
libgcc/
    PR target/63223
    * config/avr/libgcc.S (__tablejump2__): Rewrite to use RAMPZ, ELPM
    and R24 as needed.  Make work for all devices and .text locations.
    (__do_global_ctors, __do_global_dtors): Use word addresses.
    (__tablejump__, __tablejump_elpm__): Remove functions.
    * t-avr (LIB1ASMFUNCS): Remove _tablejump, _tablejump_elpm.
    Add _tablejump2.
    (XICALL, XIJMP): New macros.


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/avr/avr.md
    trunk/libgcc/ChangeLog
    trunk/libgcc/config/avr/lib1funcs.S
    trunk/libgcc/config/avr/t-avr


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug target/63223] [avr] Make jumptables work with -Wl,--section-start,.text=
  2014-09-11  7:56 [Bug target/63223] New: [avr] Make jumptables work with -Wl,--section-start,.text= gjl at gcc dot gnu.org
  2014-09-11  8:09 ` [Bug target/63223] " gjl at gcc dot gnu.org
@ 2014-09-11  8:20 ` gjl at gcc dot gnu.org
  2014-09-11  8:22 ` gjl at gcc dot gnu.org
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: gjl at gcc dot gnu.org @ 2014-09-11  8:20 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63223

--- Comment #2 from Georg-Johann Lay <gjl at gcc dot gnu.org> ---
Author: gjl
Date: Thu Sep 11 08:19:45 2014
New Revision: 215153

URL: https://gcc.gnu.org/viewcvs?rev=215153&root=gcc&view=rev
Log:
gcc/
    Backport from 2014-09-11 trunk r215152.
    PR target/63223
    * config/avr/avr.md (*tablejump.3byte-pc): New insn.
    (*tablejump): Restrict to !AVR_HAVE_EIJMP_EICALL.  Add void clobber.
    (casesi): Expand to *tablejump.3byte-pc if AVR_HAVE_EIJMP_EICALL.
libgcc/
    Backport from 2014-09-11 trunk r215152.
    PR target/63223
    * config/avr/libgcc.S (__tablejump2__): Rewrite to use RAMPZ, ELPM
    and R24 as needed.  Make work for all devices and .text locations.
    (__do_global_ctors, __do_global_dtors): Use word addresses.
    (__tablejump__, __tablejump_elpm__): Remove functions.
    * t-avr (LIB1ASMFUNCS): Remove _tablejump, _tablejump_elpm.
    Add _tablejump2.
    (XICALL, XIJMP): New macros.


Modified:
    branches/gcc-4_9-branch/gcc/ChangeLog
    branches/gcc-4_9-branch/gcc/config/avr/avr.md
    branches/gcc-4_9-branch/libgcc/ChangeLog
    branches/gcc-4_9-branch/libgcc/config/avr/lib1funcs.S
    branches/gcc-4_9-branch/libgcc/config/avr/t-avr


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug target/63223] [avr] Make jumptables work with -Wl,--section-start,.text=
  2014-09-11  7:56 [Bug target/63223] New: [avr] Make jumptables work with -Wl,--section-start,.text= gjl at gcc dot gnu.org
  2014-09-11  8:09 ` [Bug target/63223] " gjl at gcc dot gnu.org
  2014-09-11  8:20 ` gjl at gcc dot gnu.org
@ 2014-09-11  8:22 ` gjl at gcc dot gnu.org
  2014-10-17 14:40 ` amylaar at gcc dot gnu.org
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: gjl at gcc dot gnu.org @ 2014-09-11  8:22 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63223

Georg-Johann Lay <gjl at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED
   Target Milestone|---                         |4.9.2

--- Comment #3 from Georg-Johann Lay <gjl at gcc dot gnu.org> ---
Fixed in 4.9.2.


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug target/63223] [avr] Make jumptables work with -Wl,--section-start,.text=
  2014-09-11  7:56 [Bug target/63223] New: [avr] Make jumptables work with -Wl,--section-start,.text= gjl at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2014-09-11  8:22 ` gjl at gcc dot gnu.org
@ 2014-10-17 14:40 ` amylaar at gcc dot gnu.org
  2014-10-17 14:56 ` amylaar at gcc dot gnu.org
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: amylaar at gcc dot gnu.org @ 2014-10-17 14:40 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63223

Jorn Wolfgang Rennecke <amylaar at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |amylaar at gcc dot gnu.org

--- Comment #4 from Jorn Wolfgang Rennecke <amylaar at gcc dot gnu.org> ---
(In reply to Georg-Johann Lay from comment #1)
> Author: gjl
> Date: Thu Sep 11 08:08:17 2014
> New Revision: 215152
> 
> URL: https://gcc.gnu.org/viewcvs?rev=215152&root=gcc&view=rev
> Log:
> gcc/
> 	PR target/63223
> 	* config/avr/avr.md (*tablejump.3byte-pc): New insn.
> 	(*tablejump): Restrict to !AVR_HAVE_EIJMP_EICALL.  Add void clobber.
> 	(casesi): Expand to *tablejump.3byte-pc if AVR_HAVE_EIJMP_EICALL.
> libgcc/
> 	PR target/63223
> 	* config/avr/libgcc.S (__tablejump2__): Rewrite to use RAMPZ, ELPM
> 	and R24 as needed.  Make work for all devices and .text locations.
> 	(__do_global_ctors, __do_global_dtors): Use word addresses.

do_global_dtors is supposed to start at the start and increment from there.
I see it used to be half-way wrong and half-way correct.
(Starting at the start, decrementing for __AVR_HAVE_ELPM__, incrementing
otherwise.)
However, you now made it all the way use an incorrect order - starting at the
end and incrementing from there.
Is there a rationale for this?
>From gcc-bugs-return-464361-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Oct 17 14:51:58 2014
Return-Path: <gcc-bugs-return-464361-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 26557 invoked by alias); 17 Oct 2014 14:51:57 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 26087 invoked by uid 48); 17 Oct 2014 14:51:52 -0000
From: "trippels at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ipa/63576] New: [5 Regression] ICE : in ipa_merge_profiles, at ipa-utils.c:540 during Firefox LTO/PGO build
Date: Fri, 17 Oct 2014 14:51:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: new
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ipa
X-Bugzilla-Version: 5.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: trippels at gcc dot gnu.org
X-Bugzilla-Status: UNCONFIRMED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter cc
Message-ID: <bug-63576-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2014-10/txt/msg01382.txt.bz2
Content-length: 1692

https://gcc.gnu.org/bugzilla/show_bug.cgi?idc576

            Bug ID: 63576
           Summary: [5 Regression] ICE : in ipa_merge_profiles, at
                    ipa-utils.c:540 during Firefox LTO/PGO build
           Product: gcc
           Version: 5.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ipa
          Assignee: unassigned at gcc dot gnu.org
          Reporter: trippels at gcc dot gnu.org
                CC: marxin at gcc dot gnu.org

% wget trippelsdorf.de/testcase.tar.bz2
 % tar xvjf testcase.tar.bz2
 % g++ -w -march=amdfam10 -flto=4 -fprofile-use -fprofile-correction
-ffunction-sections -fdata-sections -fno-rtti -fno-exceptions -fno-math-errno
-std=gnu++0x -pipe -O3 Unified_cpp_js_src1.ii Unified_cpp_js_src2.ii
Unified_cpp_js_src3.ii
lto1: internal compiler error: in ipa_merge_profiles, at ipa-utils.c:540
0x7f7d55 ipa_merge_profiles(cgraph_node*, cgraph_node*)
        ../../gcc/gcc/ipa-utils.c:540
0xf57883 ipa_icf::sem_function::merge(ipa_icf::sem_item*)
        ../../gcc/gcc/ipa-icf.c:625
0xf5cc86 ipa_icf::sem_item_optimizer::merge_classes(unsigned int)
        ../../gcc/gcc/ipa-icf.c:2241
0xf60bf9 ipa_icf::sem_item_optimizer::execute()
        ../../gcc/gcc/ipa-icf.c:1602
0xf61671 ipa_icf_driver
        ../../gcc/gcc/ipa-icf.c:2319
0xf61671 ipa_icf::pass_ipa_icf::execute(function*)
        ../../gcc/gcc/ipa-icf.c:2366
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <http://gcc.gnu.org/bugs.html> for instructions

-fno-ipa-icf "fixes" the issue.


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug target/63223] [avr] Make jumptables work with -Wl,--section-start,.text=
  2014-09-11  7:56 [Bug target/63223] New: [avr] Make jumptables work with -Wl,--section-start,.text= gjl at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2014-10-17 14:40 ` amylaar at gcc dot gnu.org
@ 2014-10-17 14:56 ` amylaar at gcc dot gnu.org
  2014-10-17 15:11 ` amylaar at gcc dot gnu.org
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: amylaar at gcc dot gnu.org @ 2014-10-17 14:56 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63223

--- Comment #5 from Jorn Wolfgang Rennecke <amylaar at gcc dot gnu.org> ---
I also observe that the cpi/cpc/brne idiom that is used throughout -
before and after your patch - is nonsentical.


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug target/63223] [avr] Make jumptables work with -Wl,--section-start,.text=
  2014-09-11  7:56 [Bug target/63223] New: [avr] Make jumptables work with -Wl,--section-start,.text= gjl at gcc dot gnu.org
                   ` (4 preceding siblings ...)
  2014-10-17 14:56 ` amylaar at gcc dot gnu.org
@ 2014-10-17 15:11 ` amylaar at gcc dot gnu.org
  2014-10-17 15:47 ` amylaar at gcc dot gnu.org
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: amylaar at gcc dot gnu.org @ 2014-10-17 15:11 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63223

--- Comment #6 from Jorn Wolfgang Rennecke <amylaar at gcc dot gnu.org> ---
(In reply to Jorn Wolfgang Rennecke from comment #4)
> However, you now made it all the way use an incorrect order - starting at the
> end and incrementing from there.
Oops, I mean decrementing from there.  But the point still stands.


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug target/63223] [avr] Make jumptables work with -Wl,--section-start,.text=
  2014-09-11  7:56 [Bug target/63223] New: [avr] Make jumptables work with -Wl,--section-start,.text= gjl at gcc dot gnu.org
                   ` (5 preceding siblings ...)
  2014-10-17 15:11 ` amylaar at gcc dot gnu.org
@ 2014-10-17 15:47 ` amylaar at gcc dot gnu.org
  2014-10-21  9:38 ` gjl at gcc dot gnu.org
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: amylaar at gcc dot gnu.org @ 2014-10-17 15:47 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63223

--- Comment #7 from Jorn Wolfgang Rennecke <amylaar at gcc dot gnu.org> ---
(In reply to Jorn Wolfgang Rennecke from comment #5)
> I also observe that the cpi/cpc/brne idiom that is used throughout -
> before and after your patch - is nonsentical.

Oops, I drew conclusions from the "operation" short description of CPC that are
not borne out by the detailed flag setting description.


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug target/63223] [avr] Make jumptables work with -Wl,--section-start,.text=
  2014-09-11  7:56 [Bug target/63223] New: [avr] Make jumptables work with -Wl,--section-start,.text= gjl at gcc dot gnu.org
                   ` (6 preceding siblings ...)
  2014-10-17 15:47 ` amylaar at gcc dot gnu.org
@ 2014-10-21  9:38 ` gjl at gcc dot gnu.org
  2014-10-21 14:13 ` amylaar at gcc dot gnu.org
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: gjl at gcc dot gnu.org @ 2014-10-21  9:38 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63223

--- Comment #8 from Georg-Johann Lay <gjl at gcc dot gnu.org> ---
(In reply to Jorn Wolfgang Rennecke from comment #4)
> (In reply to Georg-Johann Lay from comment #1)
> do_global_dtors is supposed to start at the start and increment from there.
> I see it used to be half-way wrong and half-way correct.
> (Starting at the start, decrementing for __AVR_HAVE_ELPM__, incrementing
> otherwise.)
> However, you now made it all the way use an incorrect order - starting at the
> end and incrementing from there.
> Is there a rationale for this?

The old code was broken as it decremented begainning at the start address.  The
flaw never came apparent for __dtors_start = __dtors_end or with simulators
that terminated in exit.

The new code uses the same traverse direction like __do_global_ctors.

Is the order of .ctors, .dtors defined in any way?  I.e. how do you express
that constructor A must run before constructor B in the C program?  Same for
destructors.


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug target/63223] [avr] Make jumptables work with -Wl,--section-start,.text=
  2014-09-11  7:56 [Bug target/63223] New: [avr] Make jumptables work with -Wl,--section-start,.text= gjl at gcc dot gnu.org
                   ` (7 preceding siblings ...)
  2014-10-21  9:38 ` gjl at gcc dot gnu.org
@ 2014-10-21 14:13 ` amylaar at gcc dot gnu.org
  2014-10-21 16:12 ` amylaar at gcc dot gnu.org
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: amylaar at gcc dot gnu.org @ 2014-10-21 14:13 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63223

--- Comment #9 from Jorn Wolfgang Rennecke <amylaar at gcc dot gnu.org> ---
(In reply to Georg-Johann Lay from comment #8)
> (In reply to Jorn Wolfgang Rennecke from comment #4)
> > (In reply to Georg-Johann Lay from comment #1)
> > do_global_dtors is supposed to start at the start and increment from there.
> > I see it used to be half-way wrong and half-way correct.
> > (Starting at the start, decrementing for __AVR_HAVE_ELPM__, incrementing
> > otherwise.)
> > However, you now made it all the way use an incorrect order - starting at the
> > end and incrementing from there.
> > Is there a rationale for this?
> 
> The old code was broken as it decremented begainning at the start address. 
> The flaw never came apparent for __dtors_start = __dtors_end or with
> simulators that terminated in exit.
> 
> The new code uses the same traverse direction like __do_global_ctors.
> 
> Is the order of .ctors, .dtors defined in any way?  I.e. how do you express
> that constructor A must run before constructor B in the C program?  Same for
> destructors.

The C++ standard says that destructors have to run in reverse order of
completion
of constructors.
crtstuff.c:__do_global_ctors_aux starts at the first constructor, and
increments from there;
crtstuff.c:__do_global_dtors_aux starts at the last destructor, and decrements
from there.


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug target/63223] [avr] Make jumptables work with -Wl,--section-start,.text=
  2014-09-11  7:56 [Bug target/63223] New: [avr] Make jumptables work with -Wl,--section-start,.text= gjl at gcc dot gnu.org
                   ` (8 preceding siblings ...)
  2014-10-21 14:13 ` amylaar at gcc dot gnu.org
@ 2014-10-21 16:12 ` amylaar at gcc dot gnu.org
  2014-10-22  8:51 ` gjl at gcc dot gnu.org
  2014-10-22 12:02 ` gjl at gcc dot gnu.org
  11 siblings, 0 replies; 13+ messages in thread
From: amylaar at gcc dot gnu.org @ 2014-10-21 16:12 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63223

--- Comment #10 from Jorn Wolfgang Rennecke <amylaar at gcc dot gnu.org> ---
Created attachment 33768
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=33768&action=edit
patch for dtor direction

I have this patch for fixing the direction of the dtor execution,
but I got stuck trying to write a testcase.


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug target/63223] [avr] Make jumptables work with -Wl,--section-start,.text=
  2014-09-11  7:56 [Bug target/63223] New: [avr] Make jumptables work with -Wl,--section-start,.text= gjl at gcc dot gnu.org
                   ` (9 preceding siblings ...)
  2014-10-21 16:12 ` amylaar at gcc dot gnu.org
@ 2014-10-22  8:51 ` gjl at gcc dot gnu.org
  2014-10-22 12:02 ` gjl at gcc dot gnu.org
  11 siblings, 0 replies; 13+ messages in thread
From: gjl at gcc dot gnu.org @ 2014-10-22  8:51 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63223

--- Comment #11 from Georg-Johann Lay <gjl at gcc dot gnu.org> ---
(In reply to Jorn Wolfgang Rennecke from comment #10)
> Created attachment 33768 [details]
> patch for dtor direction
> 
> I have this patch for fixing the direction of the dtor execution,
> but I got stuck trying to write a testcase.

That won't work.  I'll install a working implementation soon so you can
proceed.


^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Bug target/63223] [avr] Make jumptables work with -Wl,--section-start,.text=
  2014-09-11  7:56 [Bug target/63223] New: [avr] Make jumptables work with -Wl,--section-start,.text= gjl at gcc dot gnu.org
                   ` (10 preceding siblings ...)
  2014-10-22  8:51 ` gjl at gcc dot gnu.org
@ 2014-10-22 12:02 ` gjl at gcc dot gnu.org
  11 siblings, 0 replies; 13+ messages in thread
From: gjl at gcc dot gnu.org @ 2014-10-22 12:02 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63223

--- Comment #12 from Georg-Johann Lay <gjl at gcc dot gnu.org> ---
Author: gjl
Date: Wed Oct 22 10:46:11 2014
New Revision: 216551

URL: https://gcc.gnu.org/viewcvs?rev=216551&root=gcc&view=rev
Log:
    PR target/63223
    * config/avr/lib1funcs.S (__do_global_dtors): Reverse execution
    order to first...last.


Modified:
    branches/gcc-4_9-branch/libgcc/ChangeLog
    branches/gcc-4_9-branch/libgcc/config/avr/lib1funcs.S


^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2014-10-22 10:46 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-11  7:56 [Bug target/63223] New: [avr] Make jumptables work with -Wl,--section-start,.text= gjl at gcc dot gnu.org
2014-09-11  8:09 ` [Bug target/63223] " gjl at gcc dot gnu.org
2014-09-11  8:20 ` gjl at gcc dot gnu.org
2014-09-11  8:22 ` gjl at gcc dot gnu.org
2014-10-17 14:40 ` amylaar at gcc dot gnu.org
2014-10-17 14:56 ` amylaar at gcc dot gnu.org
2014-10-17 15:11 ` amylaar at gcc dot gnu.org
2014-10-17 15:47 ` amylaar at gcc dot gnu.org
2014-10-21  9:38 ` gjl at gcc dot gnu.org
2014-10-21 14:13 ` amylaar at gcc dot gnu.org
2014-10-21 16:12 ` amylaar at gcc dot gnu.org
2014-10-22  8:51 ` gjl at gcc dot gnu.org
2014-10-22 12:02 ` gjl at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).