This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
expand_omp_parallel typo?
- From: Marcin Dalecki <martin at dalecki dot de>
- To: GCC Development <gcc at gcc dot gnu dot org>
- Date: Wed, 18 Oct 2006 06:27:31 +0200
- Subject: expand_omp_parallel typo?
- References: <45359552.6070208@codesourcery.com>
Looking at the function expand_omp_parallel in omp-low.c I have found
the following line of code:
bsi_insert_after (&si, t, TSI_SAME_STMT);
Shouldn't this bee
bsi_insert_after (&si, t, BSI_SAME_STMT);
instead?
Marcin Dalecki