aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/pr108137.c
blob: f0cb71b22674a3936652293a7bf67af2ca15cc51 (plain)
1
2
3
4
5
6
7
8
// PR tree-optimization/108137
// { dg-do compile }
// { dg-options "-Wformat-overflow" }

void f(unsigned short x_port, unsigned int x_host)
{
    __builtin_printf("missing %s", x_port ? "host" : &"host:port"[x_host ? 5 : 0]);
}