Skip to content

Instantly share code, notes, and snippets.

@drom
Last active August 29, 2015 14:27
Show Gist options
  • Save drom/949946f8f0a782295c95 to your computer and use it in GitHub Desktop.
Save drom/949946f8f0a782295c95 to your computer and use it in GitHub Desktop.
{
b0: {
i0 = 1
i1 = 2
i2 = add(i0, i1)
branch(i2, b2, b1)
}
b1: {
i4 = 'ok'
jump(b3)
}
b2: {
i6 = 'not-ok'
jump(b3)
}
b3: {
i8 = phi(i4, i6)
ret(i8)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment