mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-19 14:00:35 +00:00
'parallel' now requires --experimental mode
This commit is contained in:
@@ -1720,6 +1720,8 @@ proc semMagic(c: PContext, n: PNode, s: PSym, flags: TExprFlags): PNode =
|
||||
result = newStrNodeT(renderTree(n[1], {renderNoComments}), n)
|
||||
result.typ = getSysType(tyString)
|
||||
of mParallel:
|
||||
if not experimentalMode(c):
|
||||
localError(n.info, "use the {.experimental.} pragma to enable 'parallel'")
|
||||
result = setMs(n, s)
|
||||
var x = n.lastSon
|
||||
if x.kind == nkDo: x = x.sons[bodyPos]
|
||||
|
||||
@@ -1 +1,2 @@
|
||||
threads:on
|
||||
--experimental
|
||||
|
||||
1
todo.txt
1
todo.txt
@@ -13,7 +13,6 @@ version 0.11.4
|
||||
- make '--implicitStatic:on' the default; then we can also clean up the
|
||||
'static[T]' mess in the compiler!
|
||||
|
||||
- Mark the 'parallel' statement as experimental.
|
||||
- add "all threads are blocked" detection to 'spawn'
|
||||
- Deprecate ``immediate`` for templates and macros
|
||||
- make 'nil' work for 'add':
|
||||
|
||||
@@ -44,6 +44,9 @@ News
|
||||
been removed.
|
||||
- ``macros.high`` never worked and the manual says ``high`` cannot be
|
||||
overloaded, so we removed it with no deprecation cycle.
|
||||
- To use the ``parallel`` statement you now have to
|
||||
use the ``--experimental`` mode.
|
||||
|
||||
|
||||
|
||||
Library additions
|
||||
|
||||
Reference in New Issue
Block a user