diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2017-05-07 23:25:36 -0400 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2017-05-07 23:25:36 -0400 |
| commit | 2f20fe6ecd15581e356b3dcd3b254611b132c096 (patch) | |
| tree | f48d3bc80ce4c620f27733245eadba2b28d60021 /src/codegen.cpp | |
| parent | 8abcd94eceef08402f86c774c0f484cb51c6905a (diff) | |
| download | zig-2f20fe6ecd15581e356b3dcd3b254611b132c096.tar.gz zig-2f20fe6ecd15581e356b3dcd3b254611b132c096.zip | |
delete @generatedCode builtin function
good riddance
Diffstat (limited to 'src/codegen.cpp')
| -rw-r--r-- | src/codegen.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/codegen.cpp b/src/codegen.cpp index 3da7fb186b..80a9569367 100644 --- a/src/codegen.cpp +++ b/src/codegen.cpp @@ -3007,7 +3007,6 @@ static LLVMValueRef ir_render_instruction(CodeGen *g, IrExecutable *executable, case IrInstructionIdAlignOf: case IrInstructionIdFnProto: case IrInstructionIdTestComptime: - case IrInstructionIdGeneratedCode: case IrInstructionIdCheckSwitchProngs: case IrInstructionIdCheckStatementIsVoid: case IrInstructionIdTestType: @@ -4413,7 +4412,6 @@ static void define_builtin_fns(CodeGen *g) { create_builtin_fn(g, BuiltinFnIdCInclude, "cInclude", 1); create_builtin_fn(g, BuiltinFnIdCDefine, "cDefine", 2); create_builtin_fn(g, BuiltinFnIdCUndef, "cUndef", 1); - create_builtin_fn(g, BuiltinFnIdGeneratedCode, "generatedCode", 1); create_builtin_fn(g, BuiltinFnIdCtz, "ctz", 1); create_builtin_fn(g, BuiltinFnIdClz, "clz", 1); create_builtin_fn(g, BuiltinFnIdImport, "import", 1); |
