1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* PR tree-optimization/92056 */ const char *d; void foo (int c, char *e, const char *a, const char *b) { switch (c) { case 33: for (;; d++) if (__builtin_strcmp (b ? : "", d)) return; break; case 4: __builtin_sprintf (e, a); } }