boot2

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

029-land.c (155B)


      1 // tests/cc-parse/29-land.c — `&&` leaves exactly one i32 rval (§H.2).
      2 int main(void) {
      3     int a = 5;
      4     int b = 0;
      5     return (a && b) ? 100 : 42;
      6 }