diff options
author | Balaji V. Iyer <balaji.v.iyer@intel.com> | 2013-12-13 16:44:02 +0000 |
---|---|---|
committer | Balaji V. Iyer <bviyer@gcc.gnu.org> | 2013-12-13 08:44:02 -0800 |
commit | 1904eff11378de2472c6e5560470bda08216f57e (patch) | |
tree | d3d7ecd2f59145779fce0229b238ad766d04ecb2 /libcilkrts/runtime | |
parent | 8fd05f4d87084929be12624d3f21000ef593d2c3 (diff) | |
download | gcc-1904eff11378de2472c6e5560470bda08216f57e.zip gcc-1904eff11378de2472c6e5560470bda08216f57e.tar.gz gcc-1904eff11378de2472c6e5560470bda08216f57e.tar.bz2 |
Enabled Usage of _Cilk_spawn and _Cilk_sync in Cilk Runtime (libcilkrts).
+2013-12-13 Balaji V. Iyer <balaji.v.iyer@intel.com>
+
+ * Makefile.am (GENERAL_FLAGS): Removed undefining of Cilk keywords.
+ * Makefile.in: Reconfigure.
+ * runtime/symbol_test.c: Added a #define to clear out _Cilk_for.
+
From-SVN: r205965
Diffstat (limited to 'libcilkrts/runtime')
-rw-r--r-- | libcilkrts/runtime/symbol_test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libcilkrts/runtime/symbol_test.c b/libcilkrts/runtime/symbol_test.c index 1113ecd..8291d36 100644 --- a/libcilkrts/runtime/symbol_test.c +++ b/libcilkrts/runtime/symbol_test.c @@ -41,6 +41,7 @@ * will cause a linker error. */ +#define _Cilk_for for extern void* __cilkrts_global_state; void *volatile p; |