Commit 15a3ee1979

Alex Rønne Petersen <alex@alexrp.com>
2024-08-08 23:15:04
std.Target: Remove supportsNewStackCall().
This is literally just isWasm() and has no uses in the repository.
1 parent 0bb9db3
Changed files (1)
lib
lib/std/Target.zig
@@ -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();
 }