asm_jmp_02_A.d and asm_jmp_02_B.d seem to build OK here - GDC 0.25. asm_jmp_02_C.d, however fails to build.
After a little bit of debugging, it seems to be a quirk of GCC's backend, rather than GDC's problem.
Take the following C/C++ program (based on your original testcase):
int main() {
asm("jmp .LDASM1");
return 1;
asm(".LDASM1:");
return 0;
}
Will cause the exact same link failure "undefined reference to `.LDASM1'" when compiled with gcc/g++.
Thus I deduce that this is not really an issue for us. However I may report a bug upstream in GCC.
Regards