authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-10-01 21:07:02-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-10-01 21:07:02-04:00
log756d5c545d4f05ce770511a024e9fefe258591f4
tree1471325caacd68dd5735b6426f839449cbc284d3
parent4d865e355b9fc6b9f679f57e12865b05f6ee6759

remove unused function


1 files changed, 4 insertions(+), 4 deletions(-)

src/link.cpp+4-4
......@@ -324,10 +324,10 @@ static void construct_linker_job_elf(LinkJob *lj) {
324324 }
325325}
326326
327static bool is_target_cyg_mingw(const ZigTarget *target) {
328 return (target->os == ZigLLVM_Win32 && target->env_type == ZigLLVM_Cygnus) ||
329 (target->os == ZigLLVM_Win32 && target->env_type == ZigLLVM_GNU);
330}
327//static bool is_target_cyg_mingw(const ZigTarget *target) {
328// return (target->os == ZigLLVM_Win32 && target->env_type == ZigLLVM_Cygnus) ||
329// (target->os == ZigLLVM_Win32 && target->env_type == ZigLLVM_GNU);
330//}
331331
332332static void coff_append_machine_arg(CodeGen *g, ZigList<const char *> *list) {
333333 if (g->zig_target.arch.arch == ZigLLVM_x86) {