http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49159
Tobias Burnus <burnus at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |burnus at gcc dot gnu.org --- Comment #1 from Tobias Burnus <burnus at gcc dot gnu.org> 2011-05-25 14:10:06 UTC --- (In reply to comment #0) > !$OMP PRIVATE(number1, & > number2) & > The compiler returns with the following error message: > !$OMP PRIVATE(number1, & > 1 > Error: Syntax error in OpenMP variable list at (1) How about adding a !$OMP at the beginning of the continuation line? Thus, try: !$OMP PRIVATE(number1, & !$OMP number2) &