Files
Odin/src
gingerBill bf5ce04b24 Improve rules for shifting behaviour
Example:
x: u64 = 123;
assert(x >> 64 == 0); // In C this would be 123 because (64 & 0b111111) == 0

a: u64 123;
assert(a << 64 == 0); // In C this would be 123 because (64 & 0b111111) == 0
2020-05-31 13:50:17 +01:00
..
2020-02-01 22:50:57 +00:00
2020-05-30 16:45:49 +01:00
2020-05-23 13:38:06 +01:00
2020-05-23 13:38:06 +01:00
2020-05-23 13:38:06 +01:00
2020-05-23 13:38:06 +01:00
2020-05-27 18:26:20 +01:00
2018-06-17 10:58:59 +01:00
2020-05-30 16:45:49 +01:00
2020-05-23 13:38:06 +01:00
2020-05-31 13:50:17 +01:00
2019-10-26 14:29:04 +01:00
2019-09-03 22:11:21 +01:00
2019-11-10 21:49:02 +00:00
2020-05-27 18:47:45 +01:00