Where are the static methods in gcc's dump file.c.135r.jump

Posted by Customizer on Stack Overflow See other posts from Stack Overflow or by Customizer
Published on 2010-03-06T16:39:44Z Indexed on 2010/03/20 16:21 UTC
Read the original article Hit count: 277

Filed under:
|
|
|

When I run gcc with the parameter -fdump-rtl-jump, I get a dump file with the name file.c.135r.jump, where I can read some information about the intermediate representation of the methods in my C or C++ file.

I just recently discovered, that the static methods of a project are missing in this dump file. Do you know, why they are missing in that representation and if there is a possibility to include the static methods in this file, too.

Update (some additional information):
The test program, I'm using here, is the Hybrid OpenMP MPI Benchmark.

Update2:
I just reproduced the problem with a serial application, so it has nothing to do with parallel sections.

© Stack Overflow or respective owner

Related posts about gcc

Related posts about compiler