Skip to content

Commit

Permalink
std.Target: Remove supportsNewStackCall().
Browse files Browse the repository at this point in the history
This is literally just isWasm() and has no uses in the repository.
  • Loading branch information
alexrp committed Aug 12, 2024
1 parent 0bb9db3 commit 15a3ee1
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions lib/std/Target.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit 15a3ee1

Please sign in to comment.