summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2022-01-16 00:33:03 +0100
committerStefan Behnel <stefan_ml@behnel.de>2022-01-16 10:43:14 +0100
commite4d9821fb417d08a3845f18ced5916ae29827dc4 (patch)
tree741719bc1f7c56b6664e1465e879c34d7a17977e
parent29ad96444b8b1a4f05a6ac2328fde01de4782691 (diff)
downloadcython-e4d9821fb417d08a3845f18ced5916ae29827dc4.tar.gz
Remove outdated warning about OpenMP < 3.0. Even the now-EOL Docker images for manylinux2010 had that.
Closes https://github.com/cython/cython/issues/4574
-rw-r--r--Cython/Compiler/Nodes.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/Cython/Compiler/Nodes.py b/Cython/Compiler/Nodes.py
index c6d0b02f0..aebc5dc0e 100644
--- a/Cython/Compiler/Nodes.py
+++ b/Cython/Compiler/Nodes.py
@@ -8989,10 +8989,6 @@ class ParallelRangeNode(ParallelStatNode):
self.index_type = PyrexTypes.c_py_ssize_t_type
else:
self.index_type = self.target.type
- if not self.index_type.signed:
- warning(self.target.pos,
- "Unsigned index type not allowed before OpenMP 3.0",
- level=2)
# Setup start, stop and step, allocating temps if needed
self.names = 'start', 'stop', 'step'