boot2

Playing with the boostrap
git clone https://git.ryansepassi.com/git/boot2.git
Log | Files | Refs | README

030-lor.c (153B)


      1 // tests/cc-parse/30-lor.c — `||` leaves exactly one i32 rval (§H.3).
      2 int main(void) {
      3     int a = 0;
      4     int b = 5;
      5     return (a || b) ? 11 : 33;
      6 }