kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

a.c (288B)


      1 /* Baseline for case 25a: identical source, no --gc-sections. The
      2  * unreachable function survives because GC is off. */
      3 
      4 __attribute__((noinline)) int live_fn(void) { return 0; }
      5 __attribute__((noinline)) int unreachable_fn(void) { return 1; }
      6 
      7 int test_main(void) { return live_fn(); }