boot2

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

017-int-arith.c (240B)


      1 // tests/cc-parse/17-int-arith.c — width-correct 32-bit load/store via
      2 // real C source.
      3 
      4 int main() {
      5     unsigned int a = 2864434397u;  /* 0xAABBCCDD */
      6     unsigned int b = 287454020u;   /* 0x11223344 */
      7     return a == 2864434397u;
      8 }