roc/compiler/gen_llvm
Jan Van Bruggen 7d95d2b576 Fix shift filling by flipping inkwell sign_extend flags
See https://thedan64.github.io/inkwell/inkwell/builder/struct.Builder.html#method.build_right_shift

Before:
```
» Num.shiftRightBy 1 -8

9223372036854775804 : Int *

» Num.shiftRightZfBy 1 -8

-4 : Int *
```

After:
```
» Num.shiftRightBy 1 -8

-4 : Int *

» Num.shiftRightZfBy 1 -8

9223372036854775804 : Int *
```
2022-03-20 21:39:39 -06:00
..
src Fix shift filling by flipping inkwell sign_extend flags 2022-03-20 21:39:39 -06:00
Cargo.toml Move alias analysis to its own crate instead of roc_mono 2022-03-04 14:50:02 +00:00