XXXXX.c:999: error: label at end of compound statementstatic void foo(struct XXXXX *x)
{
    if (x->xxxxx != NULL) {
        DBG(&xxx, "xxxxx");
        goto done;
    }
    // 中略
done:
    bar(1);
}static void foo(struct XXXXX *x)
{
    if (x->xxxxx != NULL) {
        DBG(&xxx, "xxxxx");
        goto done;
    }
    // 中略
done:
    <strong><font color="red">;</font></strong>
    bar(1);
}