diff --git a/artiq/compiler/math_fns.py b/artiq/compiler/math_fns.py index 5ae80ea4d..3dfb0c580 100644 --- a/artiq/compiler/math_fns.py +++ b/artiq/compiler/math_fns.py @@ -34,6 +34,8 @@ def unary_fp_type(name): return types.TExternalFunction(OrderedDict([("arg", builtins.TFloat())]), builtins.TFloat(), name, + # errno isn't observable from ARTIQ Python. + flags={"nounwind", "nowrite"}, broadcast_across_arrays=True)