diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2013-06-20 19:26:12 -0500 |
---|---|---|
committer | Aldy Hernandez <aldyh@redhat.com> | 2013-06-20 19:26:12 -0500 |
commit | 0d0061a495d9adec95d67eafa0baac2b77396392 (patch) | |
tree | 62be6fcff934853aab235695047ce8d60653ab14 /gcc/tree-pretty-print.c | |
parent | 849a88aa7f0dd35082d6deac29c63786b74e6b7f (diff) | |
download | gcc-0d0061a495d9adec95d67eafa0baac2b77396392.tar.gz |
Implement a new CILK_SIMD tree code and gimplify it into GIMPLE_OMP_FOR with
an appropriate annotation.
Diffstat (limited to 'gcc/tree-pretty-print.c')
-rw-r--r-- | gcc/tree-pretty-print.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/tree-pretty-print.c b/gcc/tree-pretty-print.c index 9c3d15e1489..9c29a5b0697 100644 --- a/gcc/tree-pretty-print.c +++ b/gcc/tree-pretty-print.c @@ -2364,6 +2364,10 @@ dump_generic_node (pretty_printer *buffer, tree node, int spc, int flags, pp_string (buffer, "#pragma omp simd"); goto dump_omp_loop; + case CILK_SIMD: + pp_string (buffer, "#pragma simd"); + goto dump_omp_loop; + case OMP_DISTRIBUTE: pp_string (buffer, "#pragma omp distribute"); goto dump_omp_loop; |