This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug regression/24556] New: gcc can't inline functions using setjmp


Hi,

We have a thread library which can't be optimized as much as before, because
-starting from gcc 3.4- functions calling setjmp can not be inlined. Our
problem is with our switchto function:

void switchto(task_t *cur, task_t *next) {
        if (cur!=next) {
                if (setjmp(cur->buf) == 1)
                        return;
                longjmp(next->buf, 1);
        }
}

We would really prefer _not_ to have to define this as a macro for getting it
correctly inlined in every function that calls it.

Is there a really strong reason for not inlining such function ?

Regards,
Samuel


-- 
           Summary: gcc can't inline functions using setjmp
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: regression
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: samuel dot thibault at ens-lyon dot org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24556


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]