aboutsummaryrefslogtreecommitdiff
path: root/src/codegen.cpp
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2019-12-05 17:37:29 -0500
committerAndrew Kelley <andrew@ziglang.org>2019-12-05 17:37:29 -0500
commitef83358eb6702e8541816817e98c3e7279033672 (patch)
tree2d57f0633a84f188cc4bd0c9e25fc0484a39b6f5 /src/codegen.cpp
parent1f602fe8c5b3dea9f00f96e70dad73ebce405b49 (diff)
downloadzig-ef83358eb6702e8541816817e98c3e7279033672.tar.gz
zig-ef83358eb6702e8541816817e98c3e7279033672.zip
remove `@noInlineCall` from zig
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 35ad039d68..c1d3dc3327 100644
--- a/src/codegen.cpp
+++ b/src/codegen.cpp
@@ -8133,7 +8133,6 @@ static void define_builtin_fns(CodeGen *g) {
create_builtin_fn(g, BuiltinFnIdRound, "round", 2);
create_builtin_fn(g, BuiltinFnIdMulAdd, "mulAdd", 4);
create_builtin_fn(g, BuiltinFnIdInlineCall, "inlineCall", SIZE_MAX);
- create_builtin_fn(g, BuiltinFnIdNoInlineCall, "noInlineCall", SIZE_MAX);
create_builtin_fn(g, BuiltinFnIdNewStackCall, "newStackCall", SIZE_MAX);
create_builtin_fn(g, BuiltinFnIdAsyncCall, "asyncCall", SIZE_MAX);
create_builtin_fn(g, BuiltinFnIdTypeId, "typeId", 1);