[Bug debug/36617] Debug info for OpenMP code is almost non-existent

2008-06-27 Thread jakub at gcc dot gnu dot org
-- jakub at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |jakub at gcc dot gnu dot org |dot org

[Bug debug/36617] Debug info for OpenMP code is almost non-existent

2008-06-27 Thread jakub at gcc dot gnu dot org
--- Comment #2 from jakub at gcc dot gnu dot org 2008-06-27 19:43 --- Subject: Bug 36617 Author: jakub Date: Fri Jun 27 19:42:32 2008 New Revision: 137198 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=137198 Log: PR debug/36617 * tree-cfg.c (struct move_stmt_d):

[Bug debug/36617] Debug info for OpenMP code is almost non-existent

2008-06-27 Thread jakub at gcc dot gnu dot org
--- Comment #3 from jakub at gcc dot gnu dot org 2008-06-27 22:43 --- Fixed. -- jakub at gcc dot gnu dot org changed: What|Removed |Added Status|ASSIGNED

[Bug debug/36617] Debug info for OpenMP code is almost non-existent

2008-06-24 Thread jakub at gcc dot gnu dot org
--- Comment #1 from jakub at gcc dot gnu dot org 2008-06-24 10:01 --- A testcase can be e.g. int foo (int *a, int *b, int *c, int *d) { return *a + *b + *c + *d; } int main (void) { int vara = 1, varb = 0, varc, vard = 4; #pragma omp parallel shared (vara, varb) private (varc)