diff options
| author | LemonBoy <thatlemon@gmail.com> | 2020-11-01 19:51:42 +0100 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-11-01 14:30:31 -0700 |
| commit | 0d6a7088dc82cfe686beb5ebfe540ba2b7935cd6 (patch) | |
| tree | 8c7980fc48175487377b5890b382bfd5f0c25d7b /lib/std/builtin.zig | |
| parent | 6f3d6c1f45edea883bc206b8e60dae3b6b34cbbb (diff) | |
| download | zig-0d6a7088dc82cfe686beb5ebfe540ba2b7935cd6.tar.gz zig-0d6a7088dc82cfe686beb5ebfe540ba2b7935cd6.zip | |
stage1: Implement Add/Mul reduction operators
Diffstat (limited to 'lib/std/builtin.zig')
| -rw-r--r-- | lib/std/builtin.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/std/builtin.zig b/lib/std/builtin.zig index 8543461f33..97555dc9a5 100644 --- a/lib/std/builtin.zig +++ b/lib/std/builtin.zig @@ -106,6 +106,8 @@ pub const ReduceOp = enum { Xor, Min, Max, + Add, + Mul, }; /// This data structure is used by the Zig language code generation and |
