| author | |
| committer | |
| log | 46b9e061e07700ad1372ed2e9d2af9a29f24d76c |
| tree | 02e3a37237162fe71af4c718540bf23be4ad2821 |
| parent | 6664679c8c1d24e929630daf8392ca09620d4a94 |
1 files changed, 1 insertions(+), 1 deletions(-)
src/Sema.zig+1-1| ... | @@ -5402,7 +5402,7 @@ fn analyzeRet( | ... | @@ -5402,7 +5402,7 @@ fn analyzeRet( |
| 5402 | fn floatOpAllowed(tag: Zir.Inst.Tag) bool { | 5402 | fn floatOpAllowed(tag: Zir.Inst.Tag) bool { |
| 5403 | // extend this swich as additional operators are implemented | 5403 | // extend this swich as additional operators are implemented |
| 5404 | return switch (tag) { | 5404 | return switch (tag) { |
| 5405 | .add, .sub => true, | 5405 | .add, .sub, .mul, .div => true, |
| 5406 | else => false, | 5406 | else => false, |
| 5407 | }; | 5407 | }; |
| 5408 | } | 5408 | } |