From 0879cbeed262415645fe388e1991c7df866f7064 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Sun, 24 Jul 2022 19:05:20 -0700 Subject: remove 'builtin.stage2_arch', Sema is smart enough now --- src/stage1/codegen.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'src/stage1/codegen.cpp') diff --git a/src/stage1/codegen.cpp b/src/stage1/codegen.cpp index 8b88446295..7010e736dc 100644 --- a/src/stage1/codegen.cpp +++ b/src/stage1/codegen.cpp @@ -10076,7 +10076,6 @@ Buf *codegen_generate_builtin_source(CodeGen *g) { buf_appendf(contents, "pub const single_threaded = %s;\n", bool_to_str(g->is_single_threaded)); buf_appendf(contents, "pub const abi = std.Target.Abi.%s;\n", cur_abi); buf_appendf(contents, "pub const cpu = std.Target.Cpu.baseline(.%s);\n", cur_arch); - buf_appendf(contents, "pub const stage2_arch: std.Target.Cpu.Arch = .%s;\n", cur_arch); buf_appendf(contents, "pub const os = std.Target.Os.Tag.defaultVersionRange(.%s, .%s);\n", cur_os, cur_arch); buf_appendf(contents, "pub const target = std.Target{\n" -- cgit v1.2.3