ChanServ changed the topic of #zig to: zig programming language | ziglang.org | be excellent to each other | channel logs: https://irclog.whitequark.org/zig/
quc has quit [Ping timeout: 260 seconds]
kristate has quit [Remote host closed the connection]
kristate has joined #zig
kristate has quit [Remote host closed the connection]
kristate has joined #zig
MajorLag1 has quit [Ping timeout: 256 seconds]
kristate has quit [Remote host closed the connection]
MajorLag1 has joined #zig
vegecode has joined #zig
<vegecode> d
<vegecode> I'm having an issue with applying an operator like "|=" to a dereferenced pointer
<vegecode> "|=" operator: https://clbin.com/EU8UO
<vegecode> just a "=" operator for comparison : https://clbin.com/I1w2E
<vegecode> andrewrk, I started but haven't finished yet one of your youtube videos where you were talking about the compiler pipeline, which is why I'm trying to look at the IR now
<vegecode> I appreciate the videos!
<vegecode> In the "|=" operator IR, is it trying to dereference the pointer twice?
btbytes has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
btbytes has joined #zig
<vegecode> I have no idea. Should this be a bug report on github?
btbytes has quit [Ping timeout: 265 seconds]
kristate has joined #zig
kristate has quit [Ping timeout: 260 seconds]
dbandstra has joined #zig
<vegecode> Actually the same issue happens even if you don't use the "|=" operator and break it out into myP.* = myP.* | 10;
<vegecode> Filing issue.
vegecode has quit [Quit: Page closed]
kristate has joined #zig
<andrewrk> v1bri, correct
<andrewrk> vegecode, thank you for the issue
dbandstra has quit [Quit: Leaving]
very-mediocre has joined #zig
kristate has quit [Remote host closed the connection]
darithorn has quit [Quit: Leaving]
fjvallarino has quit [Remote host closed the connection]
fjvallarino has joined #zig
fjvallarino has quit [Ping timeout: 256 seconds]
fjvallarino has joined #zig
kristate has joined #zig
alexnask has joined #zig
xtreak has joined #zig
very-mediocre has quit [Ping timeout: 260 seconds]
kristate has quit [Remote host closed the connection]
_qazo has joined #zig
xtreak has quit [Remote host closed the connection]
kristate has joined #zig
xtreak has joined #zig
davr0s has joined #zig
kristate has quit [Ping timeout: 240 seconds]
xtreak has quit [Remote host closed the connection]
quc has joined #zig
xtreak has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
xtreak has quit [Ping timeout: 240 seconds]
zolk3ri has joined #zig
xtreak has joined #zig
mal``` has quit [Quit: Leaving]
mal`` has joined #zig
noonien has joined #zig
xtreak has quit [Remote host closed the connection]
xtreak has joined #zig
xtreak has quit [Remote host closed the connection]
xtreak has joined #zig
alexnask has quit [Ping timeout: 260 seconds]
alexnask has joined #zig
xtreak has quit []
alexnask has quit [Ping timeout: 276 seconds]
fjvallarino has quit [Remote host closed the connection]
fjvallarino has joined #zig
<GitHub10> [zig] avsej opened pull request #1172: Fix -Werror=maybe-uninitialized errors (master...fixes) https://git.io/f4NoL
alexnask has joined #zig
davr0s has joined #zig
Ichorio has joined #zig
very-mediocre has joined #zig
_qazo has quit [Ping timeout: 260 seconds]
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
Triplefox[m] has quit [*.net *.split]
kammd[m] has quit [*.net *.split]
dtz has quit [*.net *.split]
DuClare has quit [*.net *.split]
vec__ has quit [*.net *.split]
pecan has quit [*.net *.split]
dtz has joined #zig
kammd[m] has joined #zig
Triplefox[m] has joined #zig
DuClare has joined #zig
vec__ has joined #zig
pecan has joined #zig
pqflx3[m] has quit [Ping timeout: 245 seconds]
Triplefox[m] has quit [Ping timeout: 240 seconds]
kammd[m] has quit [Ping timeout: 240 seconds]
bb010g has quit [Ping timeout: 240 seconds]
lorde_kumamon[m] has quit [Ping timeout: 240 seconds]
dtz has quit [Ping timeout: 240 seconds]
clebermatheus[m] has quit [Ping timeout: 256 seconds]
sg-james[m] has quit [Ping timeout: 256 seconds]
donpdonp has quit [Ping timeout: 245 seconds]
very-mediocre has quit [Quit: Page closed]
very-mediocre has joined #zig
pqflx3[m] has joined #zig
bb010g has joined #zig
lorde_kumamon[m] has joined #zig
sg-james[m] has joined #zig
dtz has joined #zig
clebermatheus[m] has joined #zig
kammd[m] has joined #zig
Triplefox[m] has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
varion has joined #zig
<varion> has anybody considered getting the zig binary on scoop (http://scoop.sh/) for windows distribution? i'm just now looking at zig and the first thing i usually check is if it's on scoop to ease installation on win
<varion> i'm gonna' build from source, probably, just curious =)
<andrewrk> varion, have you seen the CI builds of master branch?
<varion> yeah, i saw they existed. it just seems like a lot of my other interests are making their way to scoop, since it's so minimal =) nim, etc.
Tobba has joined #zig
Tobba_ has quit [Ping timeout: 256 seconds]
noonien has quit [Quit: Connection closed for inactivity]
<GitHub40> [zig] andrewrk pushed 1 new commit to master: https://git.io/f4ATy
<GitHub40> zig/master 0874a5b Andrew Kelley: std.atomic.queue - document limitation and add MPSC queue
vegecode has joined #zig
<GitHub178> [zig] andrewrk closed pull request #1168: Clarify reason implicit cast does not work for large RHS (master...shift-amt-error-improvement) https://git.io/f4F6a
<GitHub142> zig/master f1c56f7 isaachier: Clarify reason implicit cast does not work for large RHS (#1168)...
<GitHub142> [zig] andrewrk pushed 1 new commit to master: https://git.io/f4AkG
<GitHub121> [zig] andrewrk closed pull request #1172: Fix -Werror=maybe-uninitialized errors (master...fixes) https://git.io/f4NoL
<vegecode> andrewrk, quick suggestion... I enjoyed your YouTube video about the zig compiler internals. I would also be interested to see one where you basically program on camera, fix a bug and explain your thought process and such.
vegecode has quit [Client Quit]
<andrewrk> vegecode, thanks! I plan to get into a routine doing some of that after I get back from traveling
mahmudov has joined #zig
mahmudov has quit [Remote host closed the connection]
davr0s has joined #zig
mahmudov has joined #zig
<GitHub4> [zig] andrewrk opened pull request #1173: add event loop Channel abstraction (master...event-loop-channel) https://git.io/f4AYZ
very-mediocre has quit [Quit: Page closed]
mahmudov has quit [Quit: Leaving]
mahmudov has joined #zig
fjvallarino has quit [Remote host closed the connection]
fjvallarino has joined #zig
fjvallarino has quit [Ping timeout: 268 seconds]
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
Hejsil has joined #zig
fjvallarino has joined #zig
v1bri has joined #zig
<v1bri> another question about "blk: { <stuff>; break :blk <expression>; }"
<v1bri> why use the "blk:" label and not just "const num1 = { var val1: i32 = 99; val1 = val1 + 1; break val1; };" for example
<GitHub151> [zig] bnoordhuis opened pull request #1175: support --emit in 'test' command (master...zig-test-emit-switch) https://git.io/f4AcA
dbandstra has joined #zig
alexnask has quit [Ping timeout: 276 seconds]
fjvallarino has quit [Remote host closed the connection]
fjvallarino has joined #zig
v1bri has quit [Quit: Page closed]
quc has quit [Ping timeout: 256 seconds]
varion has quit [Quit: Page closed]
zolk3ri has quit [Ping timeout: 260 seconds]
zolk3ri has joined #zig
Ichorio has quit [Ping timeout: 260 seconds]
<GitHub150> [zig] andrewrk pushed 2 new commits to master: https://git.io/f4A4m
<GitHub150> zig/master a3ab432 Andrew Kelley: Merge pull request #1175 from bnoordhuis/zig-test-emit-switch...
<GitHub150> zig/master 03f6682 Ben Noordhuis: support --emit in 'test' command...
<GitHub100> [zig] andrewrk closed pull request #1175: support --emit in 'test' command (master...zig-test-emit-switch) https://git.io/f4AcA
<andrewrk> v1bri, because if the block was in a loop, it would be confusing and ambiguous whether the break applies to the loop or the block
fjvallarino has quit [Remote host closed the connection]
fjvallarino has joined #zig
fjvallarino has quit [Ping timeout: 260 seconds]
alexnask has joined #zig
Hejsil has quit [Quit: Page closed]
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
fjvallarino has joined #zig
fjvallarino has quit [Remote host closed the connection]
fjvallarino has joined #zig
zolk3ri has quit [Quit: leaving]