boot2

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

const-divzero-shortcircuit-float.after (385B)


      1             if (f2 == 0.0) {
      2                 /* See const-divzero-shortcircuit-int patch: respect
      3                  * nocode_wanted so unevaluated short-circuited arms
      4                  * don't trigger constant divide-by-zero errors. */
      5                 if (const_wanted && !nocode_wanted)
      6                     tcc_error("division by zero in constant");
      7                 goto general_case;