delete unused function

missed by 27cd830ec8
master
Andrew Kelley 2019-04-11 14:33:43 -04:00
parent 27cd830ec8
commit a895c59971
No known key found for this signature in database
GPG Key ID: 7C5F548F728501A9
1 changed files with 0 additions and 12 deletions

View File

@ -1426,18 +1426,6 @@ static void get_darwin_platform(LinkJob *lj, DarwinPlatform *platform) {
}
}
static bool darwin_version_lt(DarwinPlatform *platform, int major, int minor) {
if (platform->major < major) {
return true;
} else if (platform->major > major) {
return false;
}
if (platform->minor < minor) {
return true;
}
return false;
}
static void construct_linker_job_macho(LinkJob *lj) {
CodeGen *g = lj->codegen;