diff options
| author | Jakub Konka <kubkon@jakubkonka.com> | 2022-05-07 23:30:08 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-07 23:30:08 +0200 |
| commit | f161d3875ad341971c97384587e2e6c2b50bc09c (patch) | |
| tree | ae6e441e067fa881982f568de54b6c9e53f2e777 /src/type.zig | |
| parent | e8c85450feac961a147d37394920081214ba9396 (diff) | |
| parent | a11097958271562fe7e64716356c07d9996fad5f (diff) | |
| download | zig-f161d3875ad341971c97384587e2e6c2b50bc09c.tar.gz zig-f161d3875ad341971c97384587e2e6c2b50bc09c.zip | |
Merge pull request #11605 from Luukdegram/wasm-mul-overflow
stage2: wasm - Improve `@mulWithOverflow` implementation
Diffstat (limited to 'src/type.zig')
| -rw-r--r-- | src/type.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/type.zig b/src/type.zig index 049f7ec856..8742d9b61c 100644 --- a/src/type.zig +++ b/src/type.zig @@ -6005,6 +6005,7 @@ pub const Type = extern union { pub const @"u64" = initTag(.u64); pub const @"i32" = initTag(.i32); + pub const @"i64" = initTag(.i64); pub const @"f16" = initTag(.f16); pub const @"f32" = initTag(.f32); |
