std.Target: Remove supportsNewStackCall().

This is literally just isWasm() and has no uses in the repository.
This commit is contained in:
Alex Rønne Petersen 2024-08-08 23:15:04 +02:00
parent 0bb9db3998
commit 15a3ee1979
No known key found for this signature in database

View File

@ -1633,10 +1633,6 @@ pub inline fn isGnuLibC(target: Target) bool {
return target.os.tag.isGnuLibC(target.abi);
}
pub inline fn supportsNewStackCall(target: Target) bool {
return !target.cpu.arch.isWasm();
}
pub inline fn isSpirV(target: Target) bool {
return target.cpu.arch.isSpirV();
}