boot2

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

018-sext-narrow.c (140B)


      1 // tests/cc-parse/18-sext-narrow.c — signed narrowing keeps sign on
      2 // re-widen.
      3 
      4 int main() {
      5     return ((int)(signed char)-3) == -3;
      6 }