boot2

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

019-zext-narrow.c (137B)


      1 // tests/cc-parse/19-zext-narrow.c — unsigned narrowing zero-extends.
      2 
      3 int main() {
      4     return ((unsigned)(unsigned char)-3) == 253;
      5 }