aboutsummaryrefslogtreecommitdiff
path: root/src/codegen.cpp
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2020-01-30 17:50:50 -0500
committerAndrew Kelley <andrew@ziglang.org>2020-01-30 17:51:55 -0500
commit17c8f108a4d4c753e087e23ff5722718a6cd7a6a (patch)
treeae936bd071b9675125d6d64b31aec5620d145cbd /src/codegen.cpp
parent4d2fed62325d0ef7326c791ab4957154f7ba4c59 (diff)
downloadzig-17c8f108a4d4c753e087e23ff5722718a6cd7a6a.tar.gz
zig-17c8f108a4d4c753e087e23ff5722718a6cd7a6a.zip
drop @newStackCall
this was causing unrelated behavior tests to fail. if this commit is reverted, the docs are good, but `@newStackCall` is already deprecated in favor of `@call`, supplying the `stack` property.
Diffstat (limited to 'src/codegen.cpp')
-rw-r--r--src/codegen.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/codegen.cpp b/src/codegen.cpp
index 72858a704f..e64a44bd13 100644
--- a/src/codegen.cpp
+++ b/src/codegen.cpp
@@ -8215,7 +8215,6 @@ static void define_builtin_fns(CodeGen *g) {
create_builtin_fn(g, BuiltinFnIdNearbyInt, "nearbyInt", 1);
create_builtin_fn(g, BuiltinFnIdRound, "round", 1);
create_builtin_fn(g, BuiltinFnIdMulAdd, "mulAdd", 4);
- create_builtin_fn(g, BuiltinFnIdNewStackCall, "newStackCall", SIZE_MAX);
create_builtin_fn(g, BuiltinFnIdAsyncCall, "asyncCall", SIZE_MAX);
create_builtin_fn(g, BuiltinFnIdTypeId, "typeId", 1);
create_builtin_fn(g, BuiltinFnIdShlExact, "shlExact", 2);