modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/pr37432.c (about)

     1  static void print_wkb_byte(unsigned char val) {
     2      print_wkb_bytes((unsigned char *)&val, 1, 1);
     3  }
     4  void InsertMultiPoint(int b) {
     5      char a = 1;
     6      if (b) a = 0;
     7      print_wkb_byte(a);
     8  }
     9